MFAVerifyWebauthnParamFields
import type { MFAVerifyWebauthnParamFields } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";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>;
};