Urara-Blog/node_modules/.pnpm-store/v3/files/ac/6c8551db8fa5c266e557998c68c5849dc387d9a6829205f35b24d056da47a4f8beb521dd5f037ce154a7de699226742e288af77705532acf6b870e9e3a15cf
2022-08-14 01:14:53 +08:00

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;