mute-structs
Version:
NodeJS module providing an implementation of the LogootSplit CRDT algorithm
11 lines (10 loc) • 553 B
TypeScript
import { Epoch } from "../../epoch/epoch";
import { RenamableReplicableList } from "../../renamablereplicablelist";
import { RenamableLogootSOperation } from "../renamablelogootsoperation";
import { TextOperation } from "../textoperation";
import { LogootSAdd } from "./logootsadd";
export declare class RenamableLogootSAdd extends RenamableLogootSOperation<LogootSAdd> {
static fromPlain(o: unknown): RenamableLogootSAdd | null;
constructor(op: LogootSAdd, epoch: Epoch);
execute(renamableList: RenamableReplicableList): TextOperation[];
}