UNPKG

@react-native-ohos/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 425 B
/** * Index of all boolean values stored in storage. */ export default class boolIndex { instanceID: string; constructor(id: string); /** * Get all keys */ getKeys(): Promise<string[]>; /** * Check if a key exists. */ hasKey(key: string): boolean; /** * Get all boolean values from storage */ getAll(): Promise<unknown>; } //# sourceMappingURL=booleans.d.ts.map