UNPKG

cookies-next

Version:

Set, Get, Remove cookies on both client and server side with Next.js

6 lines (5 loc) 286 B
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";