Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MFAVerifyWebauthnParamFields

WebAuthn-specific fields for MFA verification. Supports both credential creation (registration) and request (authentication) flows.

type MFAVerifyWebauthnParamFields<T extends "create" | "request" = "create" | "request"> = {
webauthn: MFAVerifyWebauthnParamFieldsBase & MFAVerifyWebauthnCredentialParamFields<T>;
}
;

§Type Parameters

§
T extends "create" | "request" = "create" | "request"
[src]

§Type

§
{
webauthn: MFAVerifyWebauthnParamFieldsBase & MFAVerifyWebauthnCredentialParamFields<T>;
}
[src]