UNPKG

mute-structs

Version:

NodeJS module providing an implementation of the LogootSplit CRDT algorithm

7 lines (6 loc) 244 B
import { LogootSRopes } from "../logootsropes"; import { TextOperation } from "./textoperation"; export declare abstract class LogootSOperation { abstract readonly author: number; abstract execute(doc: LogootSRopes): TextOperation[]; }