UNPKG

@okcontract/sdk

Version:

One-stop-shop permissionless SDK for building any blockchain frontend

7 lines (6 loc) 423 B
import { type AnyCell, type SheetProxy, type Uncellified } from "@okcontract/cells"; export declare const reactiveUncellify: <T>(proxy: SheetProxy, v: T | AnyCell<T>, name?: string) => AnyCell<Uncellified<T>>; /** * deepCopy recreates a deep structure with ValueCells from any cell. */ export declare const deepCopy: (proxy: SheetProxy, cell: AnyCell<unknown>) => Promise<import("@okcontract/cells").ValueCell<unknown>>;