igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
49 lines (48 loc) • 2.73 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 { __extends } from "tslib";
import { Base, String_$type, markType } from "./type";
import { Dictionary$2 } from "./Dictionary$2";
import { DataGridSummaryResultDescriptionMetadata } from "./DataGridSummaryResultDescriptionMetadata";
import { SectionInformationDescription } from "./SectionInformationDescription";
/**
* @hidden
*/
var SectionInformationDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(SectionInformationDescriptionMetadata, _super);
function SectionInformationDescriptionMetadata() {
return _super !== null && _super.apply(this, arguments) || this;
}
SectionInformationDescriptionMetadata.b = function (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);
};
SectionInformationDescriptionMetadata.c = function (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");
};
SectionInformationDescriptionMetadata.d = function (a) {
SectionInformationDescriptionMetadata.b(a);
a.af("SectionInformation", function () { return new SectionInformationDescription(); });
a.ae("SectionInformation", SectionInformationDescriptionMetadata.a);
};
SectionInformationDescriptionMetadata.$t = markType(SectionInformationDescriptionMetadata, 'SectionInformationDescriptionMetadata');
SectionInformationDescriptionMetadata.a = null;
return SectionInformationDescriptionMetadata;
}(Base));
export { SectionInformationDescriptionMetadata };