olympus-r-17plugins
Version:
A plugin of Olympus for 17zuoye.
27 lines (26 loc) • 814 B
JavaScript
import * as tslib_1 from "tslib";
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 Shell17IOSYunketang = /** @class */ (function (_super) {
tslib_1.__extends(Shell17IOSYunketang, _super);
function Shell17IOSYunketang() {
return _super !== null && _super.apply(this, arguments) || this;
}
Object.defineProperty(Shell17IOSYunketang.prototype, "clientType", {
get: function () {
return ClientType.YUNKETANG;
},
enumerable: true,
configurable: true
});
return Shell17IOSYunketang;
}(Shell17IOS));
export default Shell17IOSYunketang;