chore: update types

This commit is contained in:
alexander.akait 2023-06-14 04:25:42 +03:00
parent 774a39fef4
commit 45df4b58c6
1 changed files with 5 additions and 0 deletions

5
types.d.ts vendored
View File

@ -9693,6 +9693,11 @@ declare interface PitchLoaderDefinitionFunction<
): string | void | Buffer | Promise<string | Buffer>;
}
type Plugin =
| undefined
| null
| false
| ""
| 0
| { apply: (arg0: Resolver) => void }
| ((this: Resolver, arg1: Resolver) => void);
declare interface PnpApiImpl {