/** * ADF Patcher — applies typed delta operations to an ADF document. * * Immutable: returns a new document; the original is never mutated. * Throws AdfPatchError with context on any invalid operation. * * Operation dispatch uses a keyed handler map instead of a switch so * adding a new op type requires only one map entry and one handler. */ import type { AdfDocument, PatchOperation } from './types'; export declare function applyPatches(doc: AdfDocument, ops: PatchOperation[]): AdfDocument; //# sourceMappingURL=patcher.d.ts.map