igniteui-react-core
Version:
Ignite UI React Core.
46 lines (45 loc) • 1.57 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, markType } from "./type";
import { IDataSourceSchema_$type } from "./IDataSourceSchema";
/**
* @hidden
*/
export let DefaultDataSourceSchema = /*@__PURE__*/ (() => {
class DefaultDataSourceSchema extends Base {
constructor(a, b, c, d, e) {
super();
this.d = null;
this.e = null;
this.a = null;
this.b = null;
this.c = null;
this.d = a;
this.e = b;
this.a = c;
this.b = d;
this.c = e;
}
get primaryKey() {
return this.a;
}
get propertyNames() {
return this.d;
}
get propertyTypes() {
return this.e;
}
get propertyDataIntents() {
return this.b;
}
get subSchemas() {
return this.c;
}
}
DefaultDataSourceSchema.$t = /*@__PURE__*/ markType(DefaultDataSourceSchema, 'DefaultDataSourceSchema', Base.$, [IDataSourceSchema_$type]);
return DefaultDataSourceSchema;
})();