We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0a95d5 + 83537fa commit 1dec0c8Copy full SHA for 1dec0c8
.gitignore
@@ -1,4 +1,7 @@
1
node_modules
2
dist
3
/.nyc_output
4
-.DS_Store
+.DS_Store
5
+
6
+# ide
7
+.idea/
src/index.d.ts
@@ -3,6 +3,8 @@ export const FS: {
readFile: (fileName: string) => Uint8Array,
readdir: (pathName: string) => string[],
unlink: (fileName: string) => void,
+ mkdir: (fileName: string) => void,
+ readdir: (fileName: string) => string[],
8
}
9
10
type FSMethodNames = { [K in keyof typeof FS]: (typeof FS)[K] extends (...args: any[]) => any ? K : never }[keyof typeof FS];
0 commit comments