UNPKG

simple2k13

Version:
11 lines (10 loc) 379 B
/** @prettier */ declare function getItem<T>(key: string, storage?: Storage): T | null; declare function setItem(key: string, value: any, storage?: Storage): void; declare function removeItem(key: string, storage?: Storage): void; declare const _default: { getItem: typeof getItem; setItem: typeof setItem; removeItem: typeof removeItem; }; export default _default;