6 lines
286 B
TypeScript
6 lines
286 B
TypeScript
import type { OptionsType } from './types';
|
|
export declare const stringify: (value: any) => any;
|
|
export declare const decode: (str: string) => string;
|
|
export declare const isClientSide: (options?: OptionsType) => boolean;
|
|
export declare const getRenderPhase: () => "server" | "client";
|