File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,29 @@ import type { FsPromisesApi } from './node/types';
7
7
import type * as misc from './node/types/misc' ;
8
8
import { fsSynchronousApiList } from './node/lists/fsSynchronousApiList' ;
9
9
import { fsCallbackApiList } from './node/lists/fsCallbackApiList' ;
10
+
11
+ // Re-export core FSA implementation
12
+ export {
13
+ CoreFileSystemHandle ,
14
+ CoreFileSystemDirectoryHandle ,
15
+ CoreFileSystemFileHandle ,
16
+ CoreFileSystemSyncAccessHandle ,
17
+ CoreFileSystemWritableFileStream ,
18
+ CorePermissionStatus ,
19
+ coreToFsa ,
20
+ type CoreFsaContext
21
+ } from './fsa' ;
22
+
23
+ // Re-export node-to-fsa implementation
24
+ export {
25
+ NodeFileSystemHandle ,
26
+ NodeFileSystemDirectoryHandle ,
27
+ NodeFileSystemFileHandle ,
28
+ nodeToFsa ,
29
+ type NodeFsaContext ,
30
+ type NodeFsaFs
31
+ } from './node-to-fsa' ;
32
+
10
33
const { F_OK , R_OK , W_OK , X_OK } = constants ;
11
34
12
35
export { DirectoryJSON , NestedDirectoryJSON , Volume } ;
You can’t perform that action at this time.
0 commit comments