@ -21,7 +21,7 @@ export const FileSystemContext = createContext<{
dispatchUploadFile : ( target? : SyntheticEvent , targetFolder? : string ) = > Promise < void > ,
dispatchUploadFile : ( target? : SyntheticEvent , targetFolder? : string ) = > Promise < void > ,
dispatchUploadFolder : ( target? : SyntheticEvent , targetFolder? : string ) = > Promise < void > ,
dispatchUploadFolder : ( target? : SyntheticEvent , targetFolder? : string ) = > Promise < void > ,
dispatchCreateNewFile : ( path : string , rootDir : string ) = > Promise < void > ,
dispatchCreateNewFile : ( path : string , rootDir : string ) = > Promise < void > ,
dispatchSetFocusElement : ( elements : { key : string , type : 'file' | 'folder' | 'gist' } [ ] ) = > Promise < void > ,
dispatchSetFocusElement : ( elements : { key : string , type : 'file' | 'folder' } [ ] ) = > Promise < void > ,
dispatchCreateNewFolder : ( path : string , rootDir : string ) = > Promise < void > ,
dispatchCreateNewFolder : ( path : string , rootDir : string ) = > Promise < void > ,
dispatchDeletePath : ( path : string [ ] ) = > Promise < void > ,
dispatchDeletePath : ( path : string [ ] ) = > Promise < void > ,
dispatchRenamePath : ( oldPath : string , newPath : string ) = > Promise < void > ,
dispatchRenamePath : ( oldPath : string , newPath : string ) = > Promise < void > ,
@ -31,7 +31,7 @@ export const FileSystemContext = createContext<{
dispatchCopyFolder : ( src : string , dest : string ) = > Promise < void > ,
dispatchCopyFolder : ( src : string , dest : string ) = > Promise < void > ,
dispatchRunScript : ( path : string ) = > Promise < void > ,
dispatchRunScript : ( path : string ) = > Promise < void > ,
dispatchEmitContextMenuEvent : ( cmd : customAction ) = > Promise < void > ,
dispatchEmitContextMenuEvent : ( cmd : customAction ) = > Promise < void > ,
dispatchHandleClickFile : ( path : string , type : 'file' | 'folder' | 'gist' ) = > Promise < void >
dispatchHandleClickFile : ( path : string , type : 'file' | 'folder' ) = > Promise < void >
dispatchHandleExpandPath : ( paths : string [ ] ) = > Promise < void > ,
dispatchHandleExpandPath : ( paths : string [ ] ) = > Promise < void > ,
dispatchHandleDownloadFiles : ( ) = > Promise < void > ,
dispatchHandleDownloadFiles : ( ) = > Promise < void > ,
dispatchHandleDownloadWorkspace : ( ) = > Promise < void > ,
dispatchHandleDownloadWorkspace : ( ) = > Promise < void > ,