UNPKG

concis

Version:

Concis Component library for PC

8 lines (7 loc) 440 B
declare const setStorage: (key: string, value: any, expire?: number) => boolean; declare const getStorageFromKey: (key: string) => any; declare const getAllStorage: () => any; declare const getStorageLength: () => number; declare const removeStorageFromKey: (key: string) => void; declare const clearStorage: () => void; export { setStorage, getStorageFromKey, getAllStorage, getStorageLength, removeStorageFromKey, clearStorage, };