Skip to main content
Example
export interface LoginOptions {
  username: string;
  captcha?: string;
  [key: string]: string | number | boolean | undefined;
}

インデックス指定可能

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

プロパティ

captcha?
string
username
string