UNPKG

hansen-tool

Version:

web的一些工具集函数,包括(树形菜单转换、本地存储、文件下载、文件大小单位转换、金额格式化、浏览器判断)等

32 lines 946 B
export default class Storage { /** * @description 设置本地存储,设置为string类型或者为转换后的的JSON * @param {string} key * @return {*} */ static setStorage: (key: string, value: Object | string) => void; /** * @description 获取本地存储 * @param {string} key * @return {*} */ static getStorage: (key: string) => any; /** * @description 更新本地存储,如果是字符串直接更新,如果是对象,则合并 * @param {string} key * @return {*} */ static updateStorage: (key: string, newValue: string | Object) => void; /** * @description 移除某个本地存储 * @param {string} key * @return {*} */ static removeStorage: (key: string) => void; /** * @description 清空本地存储 * @return {*} */ static clearStorage: () => void; } //# sourceMappingURL=storage.d.ts.map