| 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 | isDeckEditing: boolean |
| 10 | isStyleSwitchPageLocked: boolean |
| 11 | isSavingEdits: boolean |
| 12 | canUndo: boolean |
| 13 | canRedo: boolean |
| 14 | hasPendingEdits: boolean |
| 15 | activeTab: SessionWorkspaceTab |
| 16 | } |
| 17 |