Parameters
| Parameter | Type | Description |
|---|---|---|
options | SignInWithEmailOptions | The options for the sign in. |
Returns
Promise<SignInWithEmailResult>
The result of the sign in.
function signInWithEmail(options: SignInWithEmailOptions): Promise<SignInWithEmailResult>;
| Parameter | Type | Description |
|---|---|---|
options | SignInWithEmailOptions | The options for the sign in. |
Promise<SignInWithEmailResult>
The result of the sign in.
const result = await signInWithEmail({
email: "user@example.com"
});
Was this page helpful?