Options for continuing with the email challenge.

interface ContinueOptions {
    code: string;
    rememberDevice?: boolean;
    [key: string]:
        | string
        | number
        | boolean
        | undefined;
}

Indexable

  • [key: string]:
        | string
        | number
        | boolean
        | undefined

    Any additional custom options

Properties

code: string

The code entered by the user.

rememberDevice?: boolean

Indicates whether to remember the device.