Skip to content

Commit

Permalink
Fix bundle options type (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBarre committed Jul 3, 2023
1 parent e4963a5 commit cd7a602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export interface DependencyOptions {
preserveImports?: boolean
}

export type BundleOptions<C extends CustomAtRules> = Omit<TransformOptions<C>, 'code', 'analyzeDependencies'>;
export type BundleOptions<C extends CustomAtRules> = Omit<TransformOptions<C>, 'code' | 'analyzeDependencies'>;

export interface BundleAsyncOptions<C extends CustomAtRules> extends BundleOptions<C> {
resolver?: Resolver;
Expand Down

0 comments on commit cd7a602

Please sign in to comment.