UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

75 lines (74 loc) 2.26 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let WebToggleDirectiveDescription = /*@__PURE__*/ (() => { class WebToggleDirectiveDescription extends Description { constructor() { super(); this.i = null; this.j = null; this.k = null; this.g = null; this.h = null; this.f = null; } get_type() { return "WebToggleDirective"; } get type() { return this.get_type(); } get id() { return this.i; } set id(a) { this.i = a; this.e("Id"); } get openedRef() { return this.j; } set openedRef(a) { this.j = a; this.e("OpenedRef"); } get openingRef() { return this.k; } set openingRef(a) { this.k = a; this.e("OpeningRef"); } get closedRef() { return this.g; } set closedRef(a) { this.g = a; this.e("ClosedRef"); } get closingRef() { return this.h; } set closingRef(a) { this.h = a; this.e("ClosingRef"); } get appendedRef() { return this.f; } set appendedRef(a) { this.f = a; this.e("AppendedRef"); } } WebToggleDirectiveDescription.$t = markType(WebToggleDirectiveDescription, 'WebToggleDirectiveDescription', Description.$); return WebToggleDirectiveDescription; })();