UNPKG

apply-hooks

Version:

A high-quality & reliable JavaScript Hooks library.

7 lines (6 loc) 291 B
import { CookieAttributes } from '../../types'; export declare const Cookie: { get: (name?: string) => string | Record<string, string>; set: (name: string, value: string, attributes?: CookieAttributes) => string; remove: (name: string, attributes?: CookieAttributes) => void; };