UNPKG

json-p3

Version:

JSONPath, JSON Pointer and JSON Patch

12 lines (11 loc) 300 B
/** * Base class for all JSON Patch errors. */ export declare class JSONPatchError extends Error { readonly message: string; constructor(message: string); } export declare class JSONPatchTestFailure extends JSONPatchError { readonly message: string; constructor(message: string); }