ping-identity
    Preparing search index...

    Interface DeviceByKind

    Discriminated mapping between a DeviceKind key and its strongly-typed device interface.

    Used as a lookup table by the DeviceOf utility type.

    type Oath = DeviceByKind['oath']; // OathDevice
    
    interface DeviceByKind {
        bound: BoundDevice;
        oath: DeviceBase;
        profile: ProfileDevice;
        push: DeviceBase;
        webAuthn: WebAuthnDevice;
    }
    Index

    Properties

    profile: ProfileDevice
    webAuthn: WebAuthnDevice