Interface PasswordlessWithSMSOptions

Options for requesting passwordless login using SMS

interface PasswordlessWithSMSOptions {
    authParams?: string;
    phoneNumber: string;
    send?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

authParams?: string

Optional passwordless parameters

phoneNumber: string

The phone number to send the link/code to

send?: string

The passwordless strategy, either 'link' or 'code'

Generated using TypeDoc