igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
38 lines (37 loc) • 1.66 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 { List$1 } from "./List$1";
import { DataSourceSchemaPropertyType_$type } from "./DataSourceSchemaPropertyType";
import { ISummaryResult_$type } from "./ISummaryResult";
import { ISectionInformation_$type } from "./ISectionInformation";
/**
* @hidden
*/
export let GenericPageResponse = /*@__PURE__*/ (() => {
class GenericPageResponse extends Base {
constructor() {
super();
this.h = 0;
this.i = 0;
this.e = null;
this.f = null;
this.d = null;
this.c = null;
this.g = null;
this.b = null;
this.a = null;
this.e = new List$1(String_$type, 0);
this.f = new List$1(DataSourceSchemaPropertyType_$type, 0);
this.d = new List$1(String_$type, 0);
this.b = new List$1(ISectionInformation_$type, 0);
this.g = new List$1(ISummaryResult_$type, 0);
}
}
GenericPageResponse.$t = markType(GenericPageResponse, 'GenericPageResponse');
return GenericPageResponse;
})();