UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

7 lines (6 loc) 190 B
import type { Chunk } from '../../../json-crdt/nodes/rga'; export type StringChunk = Chunk<string>; export interface IChunkSlice<T = string> { readonly chunk: Chunk<T>; view(): T; }