6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
import { Compiler, Plugin } from 'webpack';
|
|
declare class VueLoaderPlugin implements Plugin {
|
|
static NS: string;
|
|
apply(compiler: Compiler): void;
|
|
}
|
|
export default VueLoaderPlugin;
|