@jsonjoy.com/json-expression
Version:
High-performance JSON Pointer implementation
9 lines (8 loc) • 432 B
TypeScript
import type * as types from '../types';
import type { Path } from '@jsonjoy.com/json-pointer/lib/types';
import { type JavaScriptLinked } from '@jsonjoy.com/util/lib/codegen';
type AddFn = (doc: unknown, value: unknown) => unknown;
export declare const $$add: (path: Path) => JavaScriptLinked<AddFn>;
export declare const $add: (path: Path) => AddFn;
export declare const patchOperators: types.OperatorDefinition<any>[];
export {};