DefinitelyTyped/html-webpack-plugin/html-webpack-plugin-tests.ts
Andy 8841dfc744 Use index.d.ts only (not foo/foo.d.ts) (#12834)
* Use index.d.ts only (not foo/foo.d.ts)

* Convert more packages

* Remove unnecessary references
2016-11-21 12:58:06 -08:00

17 lines
303 B
TypeScript

import {Configuration} from "webpack";
import HtmlWebpackPlugin = require("html-webpack-plugin");
const a: Configuration = {
plugins: [
new HtmlWebpackPlugin()
]
};
const b: Configuration = {
plugins: [
new HtmlWebpackPlugin({
title: "test"
})
]
};