interface SignupPayloadOptions {
    captcha?: string;
    email?: string;
    password?: string;
    phone_number?: string;
    username?: string;
    [key: string]:
        | string
        | number
        | boolean
        | undefined;
}

Indexable

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

Properties

captcha?: string
email?: string
password?: string
phone_number?: string
username?: string