Urara-Blog/node_modules/.pnpm-store/v3/files/ba/bb3690066c4dd4bcbc82d6205d227b065ea935a37e0c1b812a8b36d2658a60be0d634d4dae1948875b839dfa42f73d530e8bcf259a6163526debc97a4537c3
2022-08-14 01:14:53 +08:00

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;