Fix up linting issue regarding array types.

This commit is contained in:
Daniel Rosenwasser
2017-08-21 21:21:53 -07:00
committed by GitHub
parent 83615efbef
commit 69e1f86c23

View File

@@ -919,7 +919,7 @@ declare namespace webpack {
}
class WatchIgnorePlugin extends Plugin {
constructor(paths: (string | RegExp)[]);
constructor(paths: Array<string | RegExp>);
}
namespace optimize {