@lifeart/gxt
Version:
<img align="right" width="95" height="95" alt="Philosopher’s stone, logo of PostCSS" src="./public/logo.png">
9 lines (8 loc) • 626 B
TypeScript
import { type Cell } from '../index.ts';
export declare function createComputeRef(fn: () => unknown): import('../index.ts').MergedCell;
export declare function createConstRef(value: unknown, debugLabel?: string): Cell<unknown>;
export declare function createUnboundRef(value: unknown, debugLabel?: string): Cell<unknown>;
export declare function createPrimitiveRef(value: unknown, debugLabel?: string): Cell<unknown>;
export declare function childRefFor(value: Cell<object>, path: string): Cell<never>;
export declare function valueForRef(ref: Cell<unknown>): unknown;
export declare const UNDEFINED_REFERENCE: unique symbol;