We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ec334 commit f038523Copy full SHA for f038523
index.d.ts
@@ -0,0 +1,13 @@
1
+type Options = {
2
+ cwd?: string;
3
+ dot?: boolean;
4
+ absolute?: boolean;
5
+ filesOnly?: boolean;
6
+ flush?: boolean;
7
+};
8
+
9
+type FilePath = string;
10
11
+declare function glob(str: string, opts?: Options): Promise<FilePath[]>;
12
13
+export = glob;
package.json
@@ -32,5 +32,6 @@
32
"devDependencies": {
33
"tap-spec": "^4.1.1",
34
"tape": "^4.8.0"
35
- }
+ },
36
+ "types": "./index.d.ts"
37
}
0 commit comments