UNPKG

@swan-io/react-native-browser

Version:

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

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