mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 12:59:30 +08:00
13 lines
232 B
Text
13 lines
232 B
Text
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;
|