UNPKG

368 BTypeScriptView Raw
1export = dirGlob;
2
3declare function dirGlob(input: string | string[], options?: dirGlob.Options): Promise<string[]>;
4
5declare namespace dirGlob {
6 function sync(input: string | string[], options?: Options): string[];
7
8 interface Options {
9 extensions?: string[] | undefined;
10 files?: string[] | undefined;
11 cwd?: string | undefined;
12 }
13}