NeahNew/node_modules/cookies-next/lib/common/utils.d.ts
2025-05-03 14:17:46 +02:00

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";