UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

5 lines (4 loc) 232 B
import type { Operation } from '../../../json-patch'; import type { JsonOp } from './types'; export declare const jsonPatchOpToJsonOp: (operation: Operation) => JsonOp; export declare const toJsonOp: (patch: Operation[]) => JsonOp;