Skip to main content
ログイン操作のオプション
Example
export interface LoginOptions {
  /** ログインに使用するusername/メールアドレス */
  username: string;
  /** 認証用パスワード */
  password: string;
  /** 必要な場合に使用するオプションのキャプチャ値 */
  captcha?: string;
  /** 追加のカスタムオプション */
  [key: string]: string | number | boolean | undefined;
}

Indexable

[key: string]: string | number | boolean | undefined 任意の追加カスタムオプション

プロパティ

captcha?
string
必要に応じて指定する任意のキャプチャ値
password
string
認証に使用するパスワード
username
string
ログインに使用する username またはメールアドレス