react-native-mmkv-storage
Version:
This library aims to provide a fast & reliable solution for you data storage needs in react-native apps. It uses [MMKV](https://github.com/Tencent/MMKV) by Tencent under the hood on Android and iOS both that is used by their WeChat app(more than 1 Billion
20 lines • 559 B
TypeScript
import { MMKVJsiModule } from '../types';
export declare const mmkvBridgeModule: {
/**
* Install JSI bindings
*/
install: () => boolean;
};
/**
* All jsi functions bound to global object.
*
* The last param `id` is the instance id of the storage instance we want to get/set the value.
*
* `undefined`: It means that instance is not loaded
*
* `null`: Value does not exist or some error occured while getting the value
*
*/
declare const mmkvJsiModule: MMKVJsiModule;
export default mmkvJsiModule;
//# sourceMappingURL=index.d.ts.map