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

Indexable

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

Properties

captcha?
string
email?
string
password?
string
phoneNumber?
string
username?
string