UNPKG

react-native-config

Version:

Expose config variables to React Native apps

12 lines (9 loc) 313 B
// @flow import type { TurboModule } from "react-native/Libraries/TurboModule/RCTExport"; import { TurboModuleRegistry } from "react-native"; export interface Spec extends TurboModule { +getConfig: () => {| config: Object, |}; } export default (TurboModuleRegistry.get<Spec>("RNCConfigModule"): ?Spec);