utils-lib-js
Version:
JavaScript工具函数,封装的一些常用的js函数
10 lines (9 loc) • 370 B
TypeScript
export declare const setStorage: (key: string, val: any) => void;
export declare const getStorage: (key: string) => any;
export declare const clearStorage: (key: string) => void;
declare const _default: {
setStorage: (key: string, val: any) => void;
getStorage: (key: string) => any;
clearStorage: (key: string) => void;
};
export default _default;