UNPKG

rhine-var

Version:

Variables that support multi-user collaboration and persistence, making collaboration and variable operations as simple as possible, with strict and well-defined type hints.

8 lines 604 B
import Connector from "../connector/connector.abstract"; import { Native } from "../native/native.type"; import ProxyOptions from "./proxy-options.interface"; import RhineVarBase from "../var/rhine-var-base.class"; import { StoredRhineVar } from "../var/rhine-var.type"; export declare function rhineProxy<T extends object>(defaultValue: T | Native, connector?: Connector | string | number, options?: ProxyOptions): StoredRhineVar<T>; export declare function rhineProxyGeneral<T extends object>(data: T | Native, parent?: RhineVarBase | null): StoredRhineVar<T>; //# sourceMappingURL=rhine-proxy.d.ts.map