method supabase.GoTrueClient.prototype.resetPasswordForEmailimport { supabase } from "https://dotland.deno.dev/x/live@1.63.12/deps.ts"; const { GoTrueClient } = supabase; resetPasswordForEmail(email: string, options?: { redirectTo?: string; captchaToken?: string; }): Promise<{ data: { }; error: null; } | { data: null; error: AuthError; }>Sends a password reset request to an email address. This method supports the PKCE flow. Sends a password reset request to an email address. This method supports the PKCE flow. Parametersemail: stringThe email address of the user. optionaloptions: { redirectTo?: string; captchaToken?: string; }The URL to send the user to after they click the password reset link. ReturnsPromise<{ data: { }; error: null; } | { data: null; error: AuthError; }>