Options for performing login operations
export interface LoginOptions {
/** The username/email to login with */
username: string;
/** The password for authentication */
password: string;
/** Optional captcha value if required */
captcha?: string;
/** Any additional custom options */
[key: string]: string | number | boolean | undefined;
}
Indexable
[key: string]: string | number | boolean | undefined
Any additional custom options
Properties
Optional captcha value if required
The password for authentication
The username/email to login with