UNPKG

@swan-io/react-native-browser

Version:

An easy-to-use in-app browser module for React Native.

12 lines 455 B
export type AnimationType = "fade" | "slide"; export type DismissButtonStyle = "cancel" | "close" | "done"; export type Options = { animationType?: AnimationType; dismissButtonStyle?: DismissButtonStyle; barTintColor?: string; controlTintColor?: string; onOpen?: () => void; onClose?: (url?: string) => void; }; export declare const openBrowser: (url: string, options: Options) => Promise<void>; //# sourceMappingURL=index.d.ts.map