ptool
Version:
vue项目开发通用工具类封装
15 lines (14 loc) • 386 B
TypeScript
/**
* @FileName cookie.ts
* @Author Mad Dragon <395548460@qq.com>
* @Version V 0.0.1
* @Date 2021/4/13 11:33
* @Title Cookie操作
* @Desc
**/
declare const _default: {
setCookie: (name: string, value: any, hours: number, path: string) => void;
getCookieValue: (name: string) => string;
deleteCookie: (name: string, path: string) => void;
};
export default _default;