| 18 | * Interface that all Webpack plugins should implement. |
| 19 | */ |
| 20 | export interface WebpackPlugin { |
| 21 | /** |
| 22 | * Entry point for a plugin. It should perform any kind of setup or initialization |
| 23 | * hook into compiler's events. |
| 24 | * |
| 25 | * @param compiler Webpack compiler instance. |
| 26 | */ |
| 27 | apply(compiler: webpack.Compiler): void; |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Common CLI arguments that are used across all commands. |
no outgoing calls
no test coverage detected
searching dependent graphs…