8 lines
322 B
TypeScript
8 lines
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 {};
|