UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

14 lines (13 loc) 486 B
import type { FileModelEncoding } from './constants'; export type LogMetadata = [ map: {}, modelFormat: FileModelEncoding ]; export type LogComponents = [ view: unknown | null, metadata: LogMetadata, model: Uint8Array | unknown | null, history: LogHistory ]; export type LogHistory = [model: Uint8Array | unknown | null, patches: Array<Uint8Array | unknown>]; export type LogComponentsWithFrontier = [...LogComponents, ...frontier: Array<Uint8Array | unknown>];