123456789101112131415161718192021222324252627282930313233 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- var InternalAPI = function () {
- function InternalAPI() {
- _classCallCheck(this, InternalAPI);
- }
-
- InternalAPI.prototype.getBoardModel = function getBoardModel() {};
- return InternalAPI;
- }();
- return InternalAPI;
- });
|