UNPKG

@lifeart/gxt

Version:

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

11 lines (10 loc) • 328 B
import { formula } from '../index.ts'; interface Cache { tag: ReturnType<typeof formula>; value: unknown; destroy: () => void; } export declare function createCache(fn: () => unknown): Cache; export declare function getValue(cache: Cache): unknown; export declare function isConst(cache: Cache): boolean; export {};