method GoTrueApi.prototype.signUpWithEmailRe-exportimport { GoTrueApi } from "https://deno.land/x/gotrue@3.0.0/src/index.ts"; signUpWithEmail(email: string,password: string,options?: { redirectTo?: string; data?: Record<string, unknown>; },): Promise<{ data: Session | User | null; error: ApiError | null; }>Creates a new user using their email address. Parametersemail: stringThe email address of the user. password: stringThe password of the user. optionaloptions: { redirectTo?: string; data?: Record<string, unknown>; } = [UNSUPPORTED]A URL or mobile address to send the user to after they are confirmed. ReturnsPromise<{ data: Session | User | null; error: ApiError | null; }>A logged-in session if the server has "autoconfirm" ON