UNPKG

232 BTypeScriptView Raw
1type Options = {
2 cwd?: string;
3 dot?: boolean;
4 absolute?: boolean;
5 filesOnly?: boolean;
6 flush?: boolean;
7};
8
9type FilePath = string;
10
11declare function glob(str: string, opts?: Options): Promise<FilePath[]>;
12
13export = glob;