UNPKG

353 BTypeScriptView Raw
1import webpack = require("webpack");
2import HtmlWebpackPlugin = require("html-webpack-plugin");
3
4/**
5 * This Webpack plugin inlines script chunks into `index.html`.
6 */
7declare class InlineChunkHtmlPlugin extends webpack.Plugin {
8 constructor(htmlWebpackPlugin: typeof HtmlWebpackPlugin, tests: readonly RegExp[]);
9}
10
11export = InlineChunkHtmlPlugin;