olympus-r-17plugins
Version:
A plugin of Olympus for 17zuoye.
36 lines (35 loc) • 1.26 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { ClientType } from "./Shell17";
import Shell17IOS from "./Shell17IOS";
/**
* @author Raykid
* @email initial_r@qq.com
* @create date 2017-10-25
* @modify date 2017-10-25
*
* 针对一起作业IOS学生端外壳
*/
var Shell17IOSStudent = /** @class */ (function (_super) {
__extends(Shell17IOSStudent, _super);
function Shell17IOSStudent() {
return _super !== null && _super.apply(this, arguments) || this;
}
Object.defineProperty(Shell17IOSStudent.prototype, "clientType", {
get: function () {
return ClientType.STUDENT;
},
enumerable: true,
configurable: true
});
return Shell17IOSStudent;
}(Shell17IOS));
export default Shell17IOSStudent;