@zdb/utils
Version:
工具包
8 lines (7 loc) • 301 B
TypeScript
export declare const setCookie: (key: string, value: string, payload?: {
expires?: number;
domain?: string;
}) => void;
export declare const getCookie: (key: string) => string | undefined;
export declare const removeCookie: (key: string) => void;
export declare const clearCookie: () => void;