@resistdesign/voltra
    Preparing search index...

    Type Alias NativeLinkAdapter

    Adapter contract for React Native deep-link APIs.

    Intended for RN Linking wrappers.

    type NativeLinkAdapter = {
        getInitialURL: () => Promise<string | null>;
        subscribe: (listener: (url: string) => void) => () => void;
    }
    Index

    Properties

    getInitialURL: () => Promise<string | null>

    Get the initial URL that opened the app.

    subscribe: (listener: (url: string) => void) => () => void

    Subscribe to incoming URL events.