GenerateSignupLinkParams

import type { GenerateSignupLinkParams } from "https://esm.sh/@supabase/[email protected]/dist/index.d.mts";
type GenerateSignupLinkParams = {
type: "signup";
email: string;
password: string;
options?: Pick<GenerateLinkOptions, "data" | "redirectTo">;
}
;

§Type

§
{
type: "signup";
email: string;
password: string;
options?: Pick<GenerateLinkOptions, "data" | "redirectTo">;
}
[src]