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