Neah/node_modules/cookies-next/lib/common/utils.d.ts
2025-04-17 12:39:10 +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";