UNPKG

@bitzonegaming/roleplay-engine-sdk

Version:
26 lines (25 loc) 448 B
/** * * @export * @interface ExternalLoginPreAuthRequest */ export interface ExternalLoginPreAuthRequest { /** * * @type {string} * @memberof ExternalLoginPreAuthRequest */ username?: string; /** * * @type {string} * @memberof ExternalLoginPreAuthRequest */ email?: string; /** * * @type {string} * @memberof ExternalLoginPreAuthRequest */ password: string; }