igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
42 lines (41 loc) • 2.21 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 { PageRequestedEventArgsDescription } from "./PageRequestedEventArgsDescription";
/**
* @hidden
*/
export let PageRequestedEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
class PageRequestedEventArgsDescriptionMetadata extends Base {
static b(a) {
if (PageRequestedEventArgsDescriptionMetadata.a == null) {
PageRequestedEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
PageRequestedEventArgsDescriptionMetadata.c(PageRequestedEventArgsDescriptionMetadata.a);
}
if (a.k(PageRequestedEventArgsDescriptionMetadata.a)) {
return;
}
a.ad(PageRequestedEventArgsDescriptionMetadata.a);
}
static c(a) {
a.item("IsSchemaRequest", "Boolean");
a.item("RequestId", "Number:int");
a.item("DataSourceId", "Number:int");
a.item("PageIndex", "Number:int");
a.item("PageSize", "Number:int");
}
static d(a) {
PageRequestedEventArgsDescriptionMetadata.b(a);
a.af("PageRequestedEventArgs", () => new PageRequestedEventArgsDescription());
a.ae("PageRequestedEventArgs", PageRequestedEventArgsDescriptionMetadata.a);
}
}
PageRequestedEventArgsDescriptionMetadata.$t = markType(PageRequestedEventArgsDescriptionMetadata, 'PageRequestedEventArgsDescriptionMetadata');
PageRequestedEventArgsDescriptionMetadata.a = null;
return PageRequestedEventArgsDescriptionMetadata;
})();