type alias supabase.SignInWithPasswordlessCredentialsimport { type supabase } from "https://deno.land/x/live@1.53.6/deps.ts"; const { SignInWithPasswordlessCredentials } = supabase; definition: { email: string; options?: { emailRedirectTo?: string; shouldCreateUser?: boolean; data?: object; captchaToken?: string; }; } | { phone: string; options?: { shouldCreateUser?: boolean; data?: object; captchaToken?: string; channel?: "sms" | "whatsapp"; }; }