react-native-mmkv
Version:
⚡️ The fastest key/value storage for React Native.
19 lines (18 loc) • 565 B
TypeScript
import type { HybridObject } from 'react-native-nitro-modules';
export interface MMKVPlatformContext extends HybridObject<{
ios: 'swift';
android: 'kotlin';
}> {
/**
* Get the MMKV base directory
*/
getBaseDirectory(): string;
/**
* Get the MMKV AppGroup's directory.
* The AppGroup can be set in your App's `Info.plist`, and will enable
* data sharing between main app, companions (e.g. watch app) and extensions.
* @platform iOS
* @default undefined
*/
getAppGroupDirectory(): string | undefined;
}