UNPKG

react-native-nitro-in-app-browser

Version:

A Simple Nitro module to open an in-app browser in your React Native app.

9 lines 423 B
export type NitroInAppBrowserDismissButtonLabel = 'cancel' | 'done' | 'close'; export type NitroInAppBrowserPresentationStyle = 'pageSheet' | 'formSheet' | 'fullScreen'; export interface NitroInAppBrowserOptions { dismissButtonLabel?: NitroInAppBrowserDismissButtonLabel; presentationStyle?: NitroInAppBrowserPresentationStyle; barColor?: string; controlColor?: string; } //# sourceMappingURL=types.d.ts.map