igniteui-react-core
Version:
Ignite UI React Core.
25 lines (24 loc) • 1.04 kB
JavaScript
import { __extends } from "tslib";
import { IgrDataSourceSortDescription } from "./igr-data-source-sort-description";
import { DataSourceGroupDescription as DataSourceGroupDescription_internal } from "./DataSourceGroupDescription";
var IgrDataSourceGroupDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(IgrDataSourceGroupDescription, _super);
function IgrDataSourceGroupDescription() {
return _super.call(this) || this;
}
IgrDataSourceGroupDescription.prototype.createImplementation = function () {
return new DataSourceGroupDescription_internal(0);
};
Object.defineProperty(IgrDataSourceGroupDescription.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
return IgrDataSourceGroupDescription;
}(IgrDataSourceSortDescription));
export { IgrDataSourceGroupDescription };