@types/react-native-safari-view
TypeScript icon, indicating that this package has built-in type declarations

2.0.9 • Public • Published

Installation

npm install --save @types/react-native-safari-view

Summary

This package contains type definitions for react-native-safari-view (https://github.com/naoufal/react-native-safari-view).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-native-safari-view.

index.d.ts

import { EmitterSubscription } from "react-native";

export interface SafariViewOptions {
    /**
     * A String containing the url you want to load in the Safari View
     */
    url: string;

    /**
     * A Boolean indicating to use Safari's Reader Mode if available
     */
    readerMode?: boolean | undefined;

    /**
     * A String containing a hex or rgba color to use for the browser controls
     */
    tintColor?: string | undefined;

    /**
     * A String containing a hex or rgba color to use for the background of the browser controls (only available on iOS 10 and higher)
     */
    barTintColor?: string | undefined;

    /**
     * A Boolean indicating to open the Safari View from the bottom
     */
    fromBottom?: boolean | undefined;
}

declare namespace SafariView {
    /**
     * Displays a Safari View with the provided URL
     */
    function show(options: SafariViewOptions): Promise<boolean>;

    /**
     * Dismisses the currently active Safari View
     */
    function dismiss(): void;

    /**
     * Checks if Safari View is available on the device
     */
    function isAvailable(): Promise<boolean>;

    function addEventListener(event: string, listener: () => void): EmitterSubscription;

    function removeEventListener(event: string, listener: () => void): void;
}
export default SafariView;

Additional Details

  • Last updated: Thu, 21 Dec 2023 19:06:51 GMT
  • Dependencies: react-native

Credits

These definitions were written by Michael Randolph.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/react-native-safari-view

Weekly Downloads

1,947

Version

2.0.9

License

MIT

Unpacked Size

5.44 kB

Total Files

5

Last publish

Collaborators

  • types