UNPKG

igniteui-react-core

Version:
58 lines (57 loc) 1.91 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { WebDockManagerPaneDescription } from "./WebDockManagerPaneDescription"; import { markType } from "./type"; /** * @hidden */ export let WebDocumentHostDescription = /*@__PURE__*/ (() => { class WebDocumentHostDescription extends WebDockManagerPaneDescription { get_type() { return "WebDocumentHost"; } constructor() { super(); this.t = null; this.u = null; this.n = null; this.q = 0; } get id() { return this.t; } set id(a) { this.t = a; this.j("Id"); } get paneType() { return this.u; } set paneType(a) { this.u = a; this.j("PaneType"); } get rootPane() { return this.n; } set rootPane(a) { this.n = a; this.j("RootPane"); } get size() { return this.q; } set size(a) { this.q = a; this.j("Size"); } } WebDocumentHostDescription.$t = /*@__PURE__*/ markType(WebDocumentHostDescription, 'WebDocumentHostDescription', WebDockManagerPaneDescription.$); WebDocumentHostDescription.__marshalByValue1 = true; WebDocumentHostDescription.__marshalByValueAlias1 = "DocumentHost"; return WebDocumentHostDescription; })();