UNPKG

kuyin-webpack-plugins

Version:

custom webpack, enhanced-resolve plugins

11 lines (10 loc) 341 B
import { Compiler } from 'webpack'; export interface InsertHbsCodeOptions { placeholder: RegExp | string; hbsCode: string | ((htmlPluginData: any) => string); } export declare class InsertHbsCodeWebpackPlugin { options: InsertHbsCodeOptions; constructor(options: InsertHbsCodeOptions); apply(compiler: Compiler): void; }