UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

50 lines (49 loc) 1.87 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 { UserBaseAnnotationDescription } from "./UserBaseAnnotationDescription"; import { markType } from "./type"; /** * @hidden */ export let UserAxisAnnotationDescription = /*@__PURE__*/ (() => { class UserAxisAnnotationDescription extends UserBaseAnnotationDescription { constructor() { super(); this.a5 = null; this.az = null; this.a2 = 0; } get_type() { return "UserAxisAnnotation"; } get targetAxisRef() { return this.a5; } set targetAxisRef(a) { this.a5 = a; this.j("TargetAxisRef"); } get targetAxisMatcher() { return this.az; } set targetAxisMatcher(a) { this.az = a; this.j("TargetAxisMatcher"); } get value() { return this.a2; } set value(a) { this.a2 = a; this.j("Value"); } } UserAxisAnnotationDescription.$t = markType(UserAxisAnnotationDescription, 'UserAxisAnnotationDescription', UserBaseAnnotationDescription.$); UserAxisAnnotationDescription.__marshalByValue1 = true; UserAxisAnnotationDescription.__marshalByValueAlias1 = "UserAxisAnnotation"; return UserAxisAnnotationDescription; })();