UNPKG

igniteui-react-core

Version:
68 lines (67 loc) 2.38 kB
/* 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, markType } from "./type"; import { IDataSourceSchema_$type } from "./IDataSourceSchema"; /** * @hidden */ var DefaultDataSourceSchema = /** @class */ /*@__PURE__*/ (function (_super) { __extends(DefaultDataSourceSchema, _super); function DefaultDataSourceSchema(a, b, c, d, e) { var _this = _super.call(this) || this; _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; return _this; } Object.defineProperty(DefaultDataSourceSchema.prototype, "primaryKey", { get: function () { return this.a; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultDataSourceSchema.prototype, "propertyNames", { get: function () { return this.d; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultDataSourceSchema.prototype, "propertyTypes", { get: function () { return this.e; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultDataSourceSchema.prototype, "propertyDataIntents", { get: function () { return this.b; }, enumerable: false, configurable: true }); Object.defineProperty(DefaultDataSourceSchema.prototype, "subSchemas", { get: function () { return this.c; }, enumerable: false, configurable: true }); DefaultDataSourceSchema.$t = markType(DefaultDataSourceSchema, 'DefaultDataSourceSchema', Base.$, [IDataSourceSchema_$type]); return DefaultDataSourceSchema; }(Base)); export { DefaultDataSourceSchema };