think/packages/domains/lib/services/IUserService.js

17 lines
496 B
JavaScript
Raw Normal View History

2022-03-11 05:57:55 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.IUserService = void 0;
class IUserService {
constructor() {
this.user = null;
this.token = null;
this.registerLoading = false;
this.registerError = null;
this.loginLoading = false;
this.loginError = null;
this.updateLoading = false;
this.updateError = null;
}
}
exports.IUserService = IUserService;
//# sourceMappingURL=IUserService.js.map