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

13 lines
278 B
TypeScript

export type UltidrawSessionResponse = {
roomId: string
canonicalPath: string
wsUrl: string
token: string
mode: "edit" | "view"
collaboration: boolean
documentUrl?: string
saveUrl?: string
}
export type UltidrawSaveStatus = "saved" | "saving" | "error" | "idle"