@bitzonegaming/roleplay-engine-sdk
Version:
Roleplay Engine SDK
26 lines (25 loc) • 419 B
TypeScript
/**
*
* @export
* @interface AccountSignInOption
*/
export interface AccountSignInOption {
/**
*
* @type {string}
* @memberof AccountSignInOption
*/
method: string;
/**
*
* @type {string}
* @memberof AccountSignInOption
*/
externalId: string | null;
/**
*
* @type {number}
* @memberof AccountSignInOption
*/
createdDate: number;
}