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