ping-identity
    Preparing search index...

    Type Alias BindingConfig

    Runtime configuration for the Binding client.

    Only stateful, client-level concerns belong here: the logger, UI callbacks, and custom key storage. Per-operation options (appPin, biometric, jwt, signingAlgorithm) are passed directly to bindForJourney / signForJourney.

    type BindingConfig = {
        logger?: JourneyInstance;
        ui?: BindingUiConfig;
        userKeyStorage?: UserKeyStorage;
    }
    Index

    Properties

    Optional JavaScript logger instance.

    Must be created by @ping-identity/rn-logger (logger(...)). JavaScript-side binding logs use this logger on both platforms. Native logger forwarding applies on both Android and iOS.

    Optional custom PIN collector and user-key selector for app-owned UI.

    When pinCollector is provided, the native default PIN dialog is bypassed. When userKeySelector is provided, the native default key-picker is bypassed. When omitted the native default UI is used on each platform.

    userKeyStorage?: UserKeyStorage

    Handle returned by configureBindingUserKeyStorage(...) that configures per-client user-key metadata storage.