WebAuthn credentials storage

interface WebAuthnCredentials {
    credentials: Record<string, DeviceInfo>;
    salt: string;
    timestamp: number;
}

Properties

credentials: Record<string, DeviceInfo>
salt: string
timestamp: number