@synonymdev/pubky
    Preparing search index...

    Interface XCallbackParams

    Optional x-callback-url metadata carried by a Pubky deep link.

    Callback destinations are untrusted navigation hints. Authentication still completes through the encrypted relay.

    interface XCallbackParams {
        xCancel?: string | null;
        xError?: string | null;
        xSource?: string | null;
        xSuccess?: string | null;
    }
    Index
    xCancel?: string | null

    Destination to open after user cancellation or timeout.

    xError?: string | null

    Destination to open after an error.

    xSource?: string | null

    Human-readable name of the requesting application.

    xSuccess?: string | null

    Destination to open after successful completion.