@bitblit/ratchet-warden-common
Version:
Typescript library to simplify using simplewebauthn and secondary auth methods over GraphQL
13 lines (12 loc) • 425 B
TypeScript
import { WardenWebAuthnTransportFutureType } from './warden-web-authn-transport-future-type.js';
export interface WardenWebAuthnEntry {
origin: string;
applicationName: string;
deviceLabel: string;
credentialIdBase64: string;
credentialPublicKeyBase64: string;
counter: number;
credentialBackedUp: boolean;
credentialDeviceType: string;
transports?: WardenWebAuthnTransportFutureType[];
}