Skip to content

Commit 302c81e

Browse files
committed
New typings file for custom interfaces and modules
1 parent 1b4a911 commit 302c81e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

custom-typings.d.ts

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
interface IWebpackDevServerConfigurationOptions {
2+
contentBase?: string;
3+
hot?: boolean;
4+
historyApiFallback?: boolean;
5+
compress?: boolean;
6+
proxy?: {[key: string] : string};
7+
staticOptions?: any;
8+
quiet?: boolean;
9+
noInfo?: boolean;
10+
lazy?: boolean;
11+
filename?: string;
12+
watchOptions?: {
13+
aggregateTimeout?: number;
14+
poll?: number;
15+
};
16+
publicPath?: string;
17+
headers?: { [key:string]: string };
18+
stats?: { colors: boolean; };
19+
inline: boolean;
20+
}
21+
22+
interface WebpackProgressPluginOutputOptions {
23+
colors?: boolean;
24+
chunks?: boolean;
25+
modules?: boolean;
26+
reasons?: boolean;
27+
chunkModules?: boolean;
28+
}

0 commit comments

Comments
 (0)