mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
353 B
TypeScript
19 lines
353 B
TypeScript
///<reference path="html-webpack-plugin.d.ts" />
|
|
|
|
import {Configuration} from "webpack";
|
|
import HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
|
|
const a: Configuration = {
|
|
plugins: [
|
|
new HtmlWebpackPlugin()
|
|
]
|
|
};
|
|
|
|
const b: Configuration = {
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
title: "test"
|
|
})
|
|
]
|
|
};
|