@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
34 lines • 753 B
TypeScript
export declare const types: string[];
export declare const methods: {
string: {
indexer: string;
get: string;
set: string;
copy: (value: string) => string;
};
number: {
indexer: string;
get: string;
set: string;
copy: (value: number) => number;
};
boolean: {
indexer: string;
get: string;
set: string;
copy: (value: boolean) => boolean;
};
object: {
indexer: string;
get: string;
set: string;
copy: (value: object) => {};
};
array: {
indexer: string;
get: string;
set: string;
copy: (value: any[]) => any[];
};
};
//# sourceMappingURL=constants.d.ts.map