/** * Basic declarations for the npm modules we use. */ declare module "micromatch" { declare function exports(Array, Array, ?{ nocase: boolean, }): Array; } declare module "resolve" { declare export default { sync: (string, {| basedir: string |}) => string; }; } declare module "json5" { declare export default { parse: (string) => mixed, }; } declare module "lodash/defaults" { declare export default (T, Object) => T; } declare module "lodash/clone" { declare export default (obj: T) => T; } declare module "lodash/merge" { declare export default (T, Object) => T; } declare module "convert-source-map" { declare export type SourceMap = { version: 3, file: ?string, sources: [?string], sourcesContent: [?string], names: [?string], mappings: string, }; declare class Converter { toJSON(): string; toBase64(): string; toComment(): string; toObject(): SourceMap } declare module.exports: { SourceMap: SourceMap, Converter: Converter, fromObject(obj: SourceMap): Converter, fromJSON(str: string): Converter, fromBase64(str: string): Converter, fromComment(str: string): Converter, fromMapFileComment(str: string): Converter, fromSource(str: string): Converter, fromMapFileSource(str: string): Converter, removeComments(str: string): string, removeMapFileComments(str: string): string, generateMapFileComment(path: string, options?: ?{ multiline: boolean }): string, }; }