UNPKG

@signumjs/monitor

Version:

Monitor transactions on Signum Network blockchain

9 lines (8 loc) 250 B
export interface LocalStorage { length: number; setItem: (key: string, value: any) => void; getItem: (key: string) => any | null; removeItem: (key: string) => void; key: (n: number) => any | null; clear: () => void; }