fractal-core
Version:
A minimalist and well crafted app, content or component is our conviction
11 lines (10 loc) • 315 B
TypeScript
import { Context } from '.';
/**
* Deep clone object
* @param object Object to clone
* @returns The cloned object
*/
export declare function clone<T>(object: T): T;
export declare const isServer: boolean;
export declare const isBrowser: boolean;
export declare const hydrateState: <S>(ctx: Context<S>) => void;