Skip to main content
MFA の電話番号登録を続行するためのオプションです。 CustomOptions を拡張し、電話番号と type に加えて、カスタムオプションも渡せるようにします。
Example
export interface ContinueOptions extends CustomOptions {
  phone: string;
  type: 'sms' | 'voice';
}

プロパティ

phone
string
type
"sms" | "voice"