返回 oh-my-ppt
types.ts
1 import type { SessionWorkspaceTab } from '@renderer/store'
2 import type { InsertAssetType } from '@renderer/types/session-detail'
3
4 export type { InsertAssetType }
5
6 export interface WorkspaceRibbonState {
7 isGenerating: boolean
8 isPageEditing: boolean
9 isPageBeautifying: boolean
10 isDeckEditing: boolean
11 isStyleSwitchPageLocked: boolean
12 isSavingEdits: boolean
13 canUndo: boolean
14 canRedo: boolean
15 hasPendingEdits: boolean
16 activeTab: SessionWorkspaceTab
17 }
18
18 lines TYPESCRIPT