babel/lib/third-party-libs.js.flow
Logan Smyth 6af8e64711 Typecheck much more of the config loading process (#5642)
* Add type declarations for micromatch.

* Enable Flowtype on all config loading.

* Remove unneeded comments.
2017-04-18 09:28:18 -07:00

10 lines
193 B
Plaintext

/**
* Basic declarations for the npm modules we use.
*/
declare module "micromatch" {
declare function exports(Array<string>, Array<string>, ?{
nocase: boolean,
}): Array<string>;
}