UNPKG

igniteui-react-core

Version:
34 lines (33 loc) 1.46 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 { DataContextDescription } from "./DataContextDescription"; import { markType } from "./type"; /** * @hidden */ export let FunnelSliceDataContextDescription = /*@__PURE__*/ (() => { class FunnelSliceDataContextDescription extends DataContextDescription { get_type() { return "FunnelSliceDataContext"; } constructor() { super(); this.aa = null; } get itemOutline() { return this.aa; } set itemOutline(a) { this.aa = a; this.g("ItemOutline"); } } FunnelSliceDataContextDescription.$t = /*@__PURE__*/ markType(FunnelSliceDataContextDescription, 'FunnelSliceDataContextDescription', DataContextDescription.$); FunnelSliceDataContextDescription.__marshalByValue1 = true; FunnelSliceDataContextDescription.__marshalByValueAlias1 = "FunnelSliceDataContext"; return FunnelSliceDataContextDescription; })();