orca/src/shared/editor-save-events.ts

11 lines
355 B
TypeScript

export const ORCA_EDITOR_SAVE_DIRTY_FILES_EVENT = 'orca:editor-save-dirty-files'
export const ORCA_EDITOR_PREPARE_HOT_EXIT_EVENT = 'orca:editor-prepare-hot-exit'
export type EditorSaveDirtyFilesDetail = {
claim: () => void
resolve: () => void
reject: (message: string) => void
}
export type EditorPrepareHotExitDetail = EditorSaveDirtyFilesDetail