UNPKG

@bengo.co/typescript-web-starter

Version:

A simple website project written in TypeScript. Use this as a starting point for your project.

13 lines (12 loc) 368 B
declare module "html-webpack-plugin" { import { Plugin } from "webpack"; class HtmlWebpackPluginType extends Plugin {} interface HtmlWebpackPluginOpts { template: string; } interface HtmlWebpackPluginConstructor { new (o: HtmlWebpackPluginOpts): HtmlWebpackPluginType; } const HtmlWebpackPlugin: HtmlWebpackPluginConstructor; export = HtmlWebpackPlugin; }