"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); /** * 多视图面板 * * @class IBizViewPanel * @extends {IBizTab} */ var IBizViewPanel = /** @class */ (function (_super) { __extends(IBizViewPanel, _super); /** * Creates an instance of IBizViewPanel. * 创建 IBizViewPanel 实例 * * @param {*} [opts={}] * @memberof IBizViewPanel */ function IBizViewPanel(opts) { if (opts === void 0) { opts = {}; } return _super.call(this, opts) || this; } return IBizViewPanel; }(IBizTab));