igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
45 lines (44 loc) • 2.1 kB
JavaScript
/*
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 { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { AxisMatcherDescription } from "./AxisMatcherDescription";
/**
* @hidden
*/
export let AxisMatcherDescriptionMetadata = /*@__PURE__*/ (() => {
class AxisMatcherDescriptionMetadata extends Base {
static b(a) {
if (AxisMatcherDescriptionMetadata.a == null) {
AxisMatcherDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
AxisMatcherDescriptionMetadata.c(AxisMatcherDescriptionMetadata.a);
}
if (a.k(AxisMatcherDescriptionMetadata.a)) {
return;
}
a.ad(AxisMatcherDescriptionMetadata.a);
}
static c(a) {
a.item("__marshalByValue", "Boolean");
a.item("Name", "String");
a.item("Title", "String");
a.item("Index", "Number:int");
a.item("MemberPathType", "String");
a.item("MemberPath", "String");
a.item("AxisType", "String");
a.item("TypedIndex", "Number:int");
}
static d(a) {
AxisMatcherDescriptionMetadata.b(a);
a.af("AxisMatcher", () => new AxisMatcherDescription());
a.ae("AxisMatcher", AxisMatcherDescriptionMetadata.a);
}
}
AxisMatcherDescriptionMetadata.$t = markType(AxisMatcherDescriptionMetadata, 'AxisMatcherDescriptionMetadata');
AxisMatcherDescriptionMetadata.a = null;
return AxisMatcherDescriptionMetadata;
})();