123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- "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.getChildrenList = function getChildrenList() {};
-
- LayoutAPI.prototype.getParentLayout = function getParentLayout() {};
-
- LayoutAPI.prototype.getWidget = function getWidget() {};
-
- LayoutAPI.prototype.render = function render() {};
- return LayoutAPI;
- }();
- return LayoutAPI;
- });
|