UNPKG

react-native-unit-components

Version:

Unit React Native components

10 lines (7 loc) 288 B
import { TurboModule, TurboModuleRegistry } from 'react-native'; interface Spec extends TurboModule { saveValue(key: string, value: string): void getValue(key: string): string cleanValue(key: string): void } export default TurboModuleRegistry.getEnforcing<Spec>('UNStoreModule');