UNPKG

@pisell/pisellos

Version:

一个可扩展的前端模块化SDK框架,支持插件系统

14 lines (13 loc) 576 B
declare function setCookie(name: string, value: string, domain?: string): void; declare function getCookie(name: string): string | null; declare function deleteCookie(name: string, domain?: string): void; declare function checkCookie(name: string): boolean; declare function updateCookie(name: string, value: string, domain?: string): void; declare const _default: { setCookie: typeof setCookie; getCookie: typeof getCookie; deleteCookie: typeof deleteCookie; checkCookie: typeof checkCookie; updateCookie: typeof updateCookie; }; export default _default;