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

PasskeyListItem

import type { PasskeyListItem } from "https://esm.sh/@supabase/supabase-js@2.105.1/dist/index.d.mts";

Item in the passkeys list (GET /passkeys/ and admin list)

type PasskeyListItem = {
id: string;
friendly_name?: string;
created_at: string;
last_used_at?: string;
}
;

§Type

§
{
id: string;
friendly_name?: string;
created_at: string;
last_used_at?: string;
}
[src]