UNPKG

olympus-r-17plugins

Version:

A plugin of Olympus for 17zuoye.

27 lines (26 loc) 839 B
import * as tslib_1 from "tslib"; import { ClientType } from "./Shell17"; import Shell17Android from "./Shell17Android"; /** * @author Raykid * @email initial_r@qq.com * @create date 2017-10-25 * @modify date 2017-10-25 * * 针对一起作业安卓学生端外壳 */ var Shell17AndroidStudent = /** @class */ (function (_super) { tslib_1.__extends(Shell17AndroidStudent, _super); function Shell17AndroidStudent() { return _super !== null && _super.apply(this, arguments) || this; } Object.defineProperty(Shell17AndroidStudent.prototype, "clientType", { get: function () { return ClientType.STUDENT; }, enumerable: true, configurable: true }); return Shell17AndroidStudent; }(Shell17Android)); export default Shell17AndroidStudent;