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.
1 parent 2d6fae8 commit 83537faCopy full SHA for 83537fa
.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
@@ -2,6 +2,8 @@ export const FS: {
writeFile: (fileName: string, binaryData: Uint8Array) => void,
readFile: (fileName: string) => Uint8Array,
unlink: (fileName: string) => void,
+ mkdir: (fileName: string) => void,
+ readdir: (fileName: string) => string[],
}
8
9
type FSMethodNames = { [K in keyof typeof FS]: (typeof FS)[K] extends (...args: any[]) => any ? K : never }[keyof typeof FS];
0 commit comments