UNPKG

@withjoy/sdk-js

Version:
7 lines (6 loc) 243 B
export interface IStorage { getItem: (key: string) => string | null | undefined; setItem: (key: string, value: string | null | undefined) => void; removeItem?: (key: string) => void; } export declare const localStorage: any;