* Add type declarations for micromatch. * Enable Flowtype on all config loading. * Remove unneeded comments.
10 lines
193 B
Plaintext
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>;
|
|
}
|