UNPKG

baasic-sdk-react-native

Version:

react-native SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).

9 lines (8 loc) 278 B
import { IStorageHandler } from 'baasic-sdk-javascript'; export declare class InMemoryStorageHandler implements IStorageHandler { memoryStore: any; clear(): void; remove(key: string): void; set(key: string, data: any): void; get(key: string): any; }