UNPKG

bizroad-webpack-plugin

Version:
15 lines (14 loc) 420 B
/** * type 导入 */ import { Compiler } from 'webpack/types'; import { IBizroadOptions, queueFormType } from './types'; declare class BizroadWebpackPlugin { options: IBizroadOptions; entryFilesPath: string[]; links: queueFormType; constructor(options: IBizroadOptions); apply(compiler: Compiler): void; _handleEntryFilesPath(entryFilepath: string): boolean; } export { BizroadWebpackPlugin };