Skip to content

Commit

Permalink
unify interface delimiter, remove extra undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
Austaras authored and jantimon committed Jul 18, 2019
1 parent 9fef060 commit 62890be
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions typings.d.ts
Expand Up @@ -106,11 +106,11 @@ declare namespace HtmlWebpackPlugin {
| ((
compilation: any,
assets: {
publicPath: string,
js: Array<string>,
css: Array<string>,
manifest?: string,
favicon?: string
publicPath: string;
js: Array<string>;
css: Array<string>;
manifest?: string;
favicon?: string;
},
assetTags: {
headTags: HtmlTagObject[];
Expand Down Expand Up @@ -189,8 +189,8 @@ declare namespace HtmlWebpackPlugin {
publicPath: string;
js: Array<string>;
css: Array<string>;
favicon?: string | undefined;
manifest?: string | undefined;
favicon?: string;
manifest?: string;
};
outputName: string;
plugin: HtmlWebpackPlugin;
Expand Down

0 comments on commit 62890be

Please sign in to comment.