findRef.d.ts 322 B

1234567
  1. import type { Reference } from '../find';
  2. import type { Path } from '../types';
  3. import { type JavaScriptLinked } from '@jsonjoy.com/util/lib/codegen';
  4. type Fn = (val: unknown) => Reference;
  5. export declare const $$findRef: (path: Path) => JavaScriptLinked<Fn>;
  6. export declare const $findRef: (path: Path) => Fn;
  7. export {};