UNPKG

397 BTypeScriptView Raw
1import * as HtmlWebpackPlugin from 'html-webpack-plugin';
2import { Compiler, Plugin } from 'webpack';
3export interface Html5EntryWebpackPluginOptions extends Omit<HtmlWebpackPlugin.Options, "templateContent"> {
4}
5export declare class Html5EntryWebpackPlugin implements Plugin {
6 private options;
7 constructor(options?: Html5EntryWebpackPluginOptions);
8 apply(compiler: Compiler): void;
9}