Deploy v0.40.0

Reviewed By: yungsters

Differential Revision: D4612331

fbshipit-source-id: 3eaa2f99d3181227166064cbee29b9245401a775
This commit is contained in:
Gabe Levi 2017-02-24 12:37:00 -08:00 committed by Facebook Github Bot
parent a26d3c43ef
commit 7cb3d9499a
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ class Server {
_opts: { _opts: {
assetExts: Array<string>, assetExts: Array<string>,
blacklistRE: ?RegExp, blacklistRE: void | RegExp,
cacheVersion: string, cacheVersion: string,
extraNodeModules: {}, extraNodeModules: {},
getTransformOptions?: GetTransformOptions, getTransformOptions?: GetTransformOptions,
@ -185,7 +185,7 @@ class Server {
reporter: Reporter, reporter: Reporter,
resetCache: boolean, resetCache: boolean,
silent: boolean, silent: boolean,
transformModulePath: ?string, transformModulePath: void | string,
transformTimeoutInterval: ?number, transformTimeoutInterval: ?number,
watch: boolean, watch: boolean,
}; };