json-joy
Version:
Collection of libraries for building collaborative editing apps.
5 lines (4 loc) • 355 B
TypeScript
import type { Operation, PredicateOperation } from './types';
export declare const validateOperations: (ops: Operation[], allowMatchesOp?: boolean) => void;
export declare const validateOperation: (op: Operation, allowMatchesOp: boolean) => void;
export declare const validatePredicateOperation: (op: PredicateOperation, allowMatchesOp: boolean) => void;