ultisuite-client/lib/drive/richtext-types.ts
R3D347HR4Y 303b2b1074
Some checks are pending
E2E / Playwright e2e (push) Waiting to run
wow
2026-06-11 01:22:40 +02:00

20 lines
560 B
TypeScript

import type { DocPageSetup } from "@/lib/drive/doc-page-setup"
import type { DocParagraphStylesCatalog } from "@/lib/drive/docs-paragraph-styles"
export type RichTextSessionResponse = {
roomId: string
canonicalPath: string
sourcePath?: string
wsUrl: string
token: string
mode: "edit" | "view"
importRequired: boolean
collaboration: boolean
documentUrl?: string
saveUrl?: string
pageSetup?: DocPageSetup | null
paragraphStyles?: DocParagraphStylesCatalog | null
}
export type RichTextSaveStatus = "saved" | "saving" | "error" | "idle"