Skip to content

Commit

Permalink
fix: fix BreeOptions type def
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowgate15 committed Mar 16, 2022
1 parent b520022 commit a220320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ declare namespace Bree {
outputWorkerMetadata: boolean;
}

type BreeOptions = Partial<BreeConfigs> & {
type BreeOptions = Partial<Omit<BreeConfigs, 'jobs'>> & {
jobs?: Array<string | (() => void) | JobOptions>;
};

Expand Down

0 comments on commit a220320

Please sign in to comment.