Skip to content

Commit

Permalink
New typings file for custom interfaces and modules
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLarkInn committed Jun 17, 2016
1 parent 1b4a911 commit 302c81e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions custom-typings.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
interface IWebpackDevServerConfigurationOptions {
contentBase?: string;
hot?: boolean;
historyApiFallback?: boolean;
compress?: boolean;
proxy?: {[key: string] : string};
staticOptions?: any;
quiet?: boolean;
noInfo?: boolean;
lazy?: boolean;
filename?: string;
watchOptions?: {
aggregateTimeout?: number;
poll?: number;
};
publicPath?: string;
headers?: { [key:string]: string };
stats?: { colors: boolean; };
inline: boolean;
}

interface WebpackProgressPluginOutputOptions {
colors?: boolean;
chunks?: boolean;
modules?: boolean;
reasons?: boolean;
chunkModules?: boolean;
}

0 comments on commit 302c81e

Please sign in to comment.