mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:19:31 +08:00
13 lines
223 B
Text
13 lines
223 B
Text
type Options = {
|
|
cwd?: string;
|
|
dot?: boolean;
|
|
absolute?: boolean;
|
|
filesOnly?: boolean;
|
|
flush?: boolean;
|
|
};
|
|
|
|
type FilePath = string;
|
|
|
|
declare function glob(str: string, opts?: Options): FilePath[];
|
|
|
|
export = glob;
|