12345678910111213141516171819202122232425262728293031323334 |
- export default ESLintWebpackPlugin;
- export type Compiler = import('webpack').Compiler;
- export type Options = import('./options').Options;
- declare class ESLintWebpackPlugin {
-
- constructor(options?: Options);
- key: string;
- options: import('./options').PluginOptions;
-
- run(
- compiler: Compiler,
- options: Options,
- wanted: string[],
- exclude: string[]
- ): Promise<void>;
-
- apply(compiler: Compiler): void;
-
- getContext(compiler: Compiler): string;
- }
|