You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
398 B

import OriginalHtmlWebpackPlugin from 'html-webpack-plugin';
import { Environment } from '../types';
/**
* Generates an `index.html` file with the <script> injected.
*
* @category plugins
*/
export default class HtmlWebpackPlugin extends OriginalHtmlWebpackPlugin {
private platform;
constructor(env: Environment, templateHtmlData?: any);
generatedScriptTags(jsAssets: any): any;
}