UNPKG

electron-event-flux

Version:

Redux store which synchronizes between instances in multiple process

9 lines (6 loc) 220 B
export default interface IStorage { set(key: string | { [key: string]: any }, value: any): void; get(key: string, defaultValue?: any): any; delete(key: string): void; getNSStore(namespace: string): IStorage; }