Stone.js API
    Preparing search index...

    The subset of React Native's Linking module this adapter uses.

    Declared structurally rather than imported, for two reasons: the adapter must be testable without a native runtime, and it must not make react-native a hard dependency of a package that a server-side test suite may pull in transitively.

    interface LinkingLike {
        addEventListener: (
            type: "url",
            handler: (event: { url: string }) => void,
        ) => { remove: () => void };
        getInitialURL: () => Promise<string>;
    }
    Index
    addEventListener: (
        type: "url",
        handler: (event: { url: string }) => void,
    ) => { remove: () => void }

    Subscribe to URLs delivered while the application runs.

    getInitialURL: () => Promise<string>

    The URL the application was opened with, if any.