ping-identity
    Preparing search index...

    Type Alias PushStorage

    PushStorage: BaseStorageConfig & JourneyInstance

    Storage configuration type for push MFA storage.

    Opaque handle returned by configurePushStorage.

    Used by native-backed modules to resolve a previously registered push storage configuration. Pass to createPushClient({ storage }) to use custom storage for push MFA instead of the platform default.

    Includes a kind discriminator and compile-time brand so callers cannot accidentally pass a plain config object or a different storage handle where a push storage handle is required.

    • BaseStorageConfig for configuration input options
    • configurePushStorage to register and resolve a configuration

    Basic usage:

    import { configurePushStorage } from '@ping-identity/rn-storage';

    const pushStorage: PushStorage = configurePushStorage({
    android: {
    keyAlias: 'push_key'
    }
    });

    // Pass to push client
    // createPushClient({ storage: pushStorage });