igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
45 lines (44 loc) • 2.44 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 { DataGridSummaryResultDescriptionMetadata } from "./DataGridSummaryResultDescriptionMetadata";
import { SectionInformationDescription } from "./SectionInformationDescription";
/**
* @hidden
*/
export let SectionInformationDescriptionMetadata = /*@__PURE__*/ (() => {
class SectionInformationDescriptionMetadata extends Base {
static b(a) {
if (SectionInformationDescriptionMetadata.a == null) {
SectionInformationDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
SectionInformationDescriptionMetadata.c(SectionInformationDescriptionMetadata.a);
}
if (a.k(SectionInformationDescriptionMetadata.a)) {
return;
}
a.ad(SectionInformationDescriptionMetadata.a);
DataGridSummaryResultDescriptionMetadata.d(a);
}
static c(a) {
a.item("__marshalByValue", "Boolean");
a.item("StartIndex", "Number:int");
a.item("EndIndex", "Number:int");
a.item("GroupKeyValuesRef", "(w:GroupKeyValues,p:GroupKeyValues)DataRef:object");
a.item("GroupKeyProperties", "Array:string");
a.item("SummaryResults", "Array:DataGridSummaryResultDescription:ISummaryResult");
}
static d(a) {
SectionInformationDescriptionMetadata.b(a);
a.af("SectionInformation", () => new SectionInformationDescription());
a.ae("SectionInformation", SectionInformationDescriptionMetadata.a);
}
}
SectionInformationDescriptionMetadata.$t = markType(SectionInformationDescriptionMetadata, 'SectionInformationDescriptionMetadata');
SectionInformationDescriptionMetadata.a = null;
return SectionInformationDescriptionMetadata;
})();