ds-tool
Version:
18 lines (17 loc) • 377 B
TypeScript
interface Iconfig {
exdays?: number;
hours?: number;
}
/**
* 设置cookie
*/
export declare const setCookie: (cname: string, cvalue: any, config?: Iconfig | undefined) => void;
/**
* 获取cookie
*/
export declare const getCookie: (cname: string) => string;
/**
* 清空所有cookie
*/
export declare const clearAllCookie: () => void;
export {};