UNPKG

json-joy

Version:

Collection of libraries for building collaborative editing apps.

9 lines (8 loc) 276 B
import type { JsonPatchOptions } from '../../types'; import type { Op } from '../../op'; import type { Operation } from './types'; export declare class Decoder { private readonly options; constructor(options: JsonPatchOptions); decode(patch: Operation[]): Op[]; }