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

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>;
}
;

§Type Parameters

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

§Type

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