12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
-
-
- export type BannerPluginArgument =
- | BannerPluginOptions
- | BannerFunction
- | string;
-
- export type BannerFunction = (data: {
- hash: string;
- chunk: import("../../lib/Chunk");
- filename: string;
- basename: string;
- query: string;
- }) => string;
- export type Rules = Rule[] | Rule;
- export type Rule = RegExp | string;
-
- export interface BannerPluginOptions {
-
-
- banner: BannerFunction | string;
-
-
- entryOnly?: boolean;
-
-
- exclude?: Rules;
-
-
- include?: Rules;
-
-
- raw?: boolean;
-
-
- test?: Rules;
- }
|