5 lines
132 B
TypeScript
5 lines
132 B
TypeScript
|
import { WebpackCompiler } from './WebpackCompiler';
|
||
|
export interface WebpackPlugin {
|
||
|
apply(compiler: WebpackCompiler): void;
|
||
|
}
|