Skip to content

Commit

Permalink
fix: lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
nmn committed Jul 23, 2024
1 parent ec42a8e commit cdf16e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/rollup-plugin/flow_modules/rollup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ export type SequentialPluginHooks =
| 'transform';

export type ParallelPluginHooks = Exclude<
$Keys<FunctionPluginHooks> | $Keys<AddonHooks>,
$Keys<FunctionPluginHooks> | AddonHooks,
FirstPluginHooks | SequentialPluginHooks,
>;

Expand Down Expand Up @@ -555,7 +555,7 @@ export type OutputPlugin = {
// eslint-disable-next-line no-redeclare
...Partial<{ [K in OutputPluginHooks]: PluginHooks[K] }>,
// eslint-disable-next-line no-redeclare
...Partial<{ [K in AddonHooks]: ObjectHook<AddonHook> }>,
...Partial<{ [_K in AddonHooks]: ObjectHook<AddonHook> }>,
cacheKey?: string,
name: string,
version?: string,
Expand Down

0 comments on commit cdf16e1

Please sign in to comment.