mirror of https://github.com/fantasticit/think.git
17 lines
496 B
JavaScript
17 lines
496 B
JavaScript
"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
|