Upgrade flow to 0.66 and fix a few minor errors. (#7431)

This commit is contained in:
Logan Smyth
2018-02-25 19:22:23 -08:00
committed by GitHub
parent 8823e4247e
commit 7ff4a73916
7 changed files with 20 additions and 11 deletions

View File

@@ -3,9 +3,9 @@
*/
declare module "micromatch" {
declare function exports(Array<string>, Array<string>, ?{
nocase: boolean,
}): Array<string>;
declare module.exports: {
(Array<string>, Array<string>, ?{ nocase: boolean }): Array<string>,
};
}
declare module "resolve" {