123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- var LayoutAPI = function () {
- function LayoutAPI() {
- _classCallCheck(this, LayoutAPI);
- }
-
- LayoutAPI.prototype.getChildren = function getChildren() {};
-
- LayoutAPI.prototype.getId = function getId() {};
-
- LayoutAPI.prototype.getSelfRatio = function getSelfRatio() {};
-
- LayoutAPI.prototype.getWidgetAPI = function getWidgetAPI() {};
- return LayoutAPI;
- }();
- return LayoutAPI;
- });
|