UNPKG

@react-native-ohos/react-native-user-agent

Version:

Library that helps you to get mobile application user agent and web view user agent strings.

8 lines (7 loc) 356 B
import type { TurboModule } from 'react-native/Libraries/TurboModule/RCTExport'; import { TurboModuleRegistry } from 'react-native'; export interface Spec extends TurboModule { getWebViewUserAgent: () => Promise<string>; readonly getConstants:() => {}; } export default TurboModuleRegistry.get<Spec>('UserAgentNativeModule') as Spec | null;