@jsonjoy.com/json-pointer
Version:
High-performance JSON Pointer implementation
8 lines (7 loc) • 322 B
TypeScript
import type { Reference } from '../find';
import type { Path } from '../types';
import { type JavaScriptLinked } from '@jsonjoy.com/util/lib/codegen';
type Fn = (val: unknown) => Reference;
export declare const $$findRef: (path: Path) => JavaScriptLinked<Fn>;
export declare const $findRef: (path: Path) => Fn;
export {};