UNPKG

@veltdev/types

Version:

Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.

22 lines (21 loc) 640 B
import { LiveStateData, SingleEditorLiveStateData } from "./live-state-data.data.model"; export declare class LiveStateDataMap { /** * Map of all unique LiveStateData set by you on the given document. */ custom?: { [liveStateDataId: string]: LiveStateData; }; /** * Map of all unique LiveStateData set by the default editor on the given document. */ default?: { singleEditor?: SingleEditorLiveStateData; autoSyncState?: { current?: LiveStateData; history?: { [liveStateDataId: string]: LiveStateData; }; }; }; }