Skip to main content
ContinueOptions
Example
export interface ContinueOptions extends CustomOptions {
  /**
   * The delivery method selected by the user for receiving the verification code.
   * - `sms`: Send the code via text message.
   * - `voice`: Send the code via a voice call.
   * @type {'sms' | 'voice'}
   */
  type: 'sms' | 'voice';
}

Indexable

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

Properties

type
"sms" | "voice"
The delivery method selected by the user for receiving the verification code.
  • sms: Send the code via text message.
  • voice: Send the code via a voice call.