UNPKG

@lifeart/gxt

Version:

<img align="right" width="95" height="95" alt="Philosopher’s stone, logo of PostCSS" src="./public/logo.png">

10 lines (8 loc) • 613 B
import { Cell } from '../reactive'; export declare function createComputeRef(fn: () => unknown): import('..').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;