UNPKG

marsol

Version:
26 lines (25 loc) 405 B
/** * * @export * @interface SignupOTPResponse */ export interface SignupOTPResponse { /** * * @type {number} * @memberof SignupOTPResponse */ expiration: number; /** * * @type {string} * @memberof SignupOTPResponse */ requestId: string; /** * * @type {string} * @memberof SignupOTPResponse */ resendToken: string; }