@bitzonegaming/roleplay-engine-sdk
Version:
Roleplay Engine SDK
26 lines (25 loc) • 448 B
TypeScript
/**
*
* @export
* @interface ExternalLoginPreAuthRequest
*/
export interface ExternalLoginPreAuthRequest {
/**
*
* @type {string}
* @memberof ExternalLoginPreAuthRequest
*/
username?: string;
/**
*
* @type {string}
* @memberof ExternalLoginPreAuthRequest
*/
email?: string;
/**
*
* @type {string}
* @memberof ExternalLoginPreAuthRequest
*/
password: string;
}