react-native-onyx
Version:
State management for React Native
14 lines (13 loc) • 423 B
TypeScript
import type StorageProvider from './types';
/**
* The type of the key-value pair stored in the SQLite database
* @property record_key - the key of the record
* @property valueJSON - the value of the record in JSON string format
*/
type OnyxSQLiteKeyValuePair = {
record_key: string;
valueJSON: string;
};
declare const provider: StorageProvider;
export default provider;
export type { OnyxSQLiteKeyValuePair };