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