UNPKG

react-orchestra

Version:

A toolbox to build interactive and smart instruments on the web and mobile.

10 lines (9 loc) 256 B
declare class Store { db: LocalForage; constructor(); set(key: string, value: any): Promise<any>; get(key: string): Promise<{} | null>; exists(key: string): Promise<boolean>; } declare const store: Store; export default store;