mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Use index.d.ts only (not foo/foo.d.ts) * Convert more packages * Remove unnecessary references
17 lines
303 B
TypeScript
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"
|
|
})
|
|
]
|
|
};
|