1 | export = dirGlob;
|
2 |
|
3 | declare function dirGlob(input: string | string[], options?: dirGlob.Options): Promise<string[]>;
|
4 |
|
5 | declare 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 | }
|