igniteui-react-core
Version:
Ignite UI React Core.
62 lines (61 loc) • 2.44 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 { __extends } from "tslib";
import { GridColumnOptionsSimpleSectionBaseDescription } from "./GridColumnOptionsSimpleSectionBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var GridColumnSortOptionsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GridColumnSortOptionsDescription, _super);
function GridColumnSortOptionsDescription() {
var _this = _super.call(this) || this;
_this.aw = null;
_this.ax = null;
_this.ay = null;
return _this;
}
GridColumnSortOptionsDescription.prototype.get_type = function () {
return "GridColumnSortOptions";
};
Object.defineProperty(GridColumnSortOptionsDescription.prototype, "ascendingCaption", {
get: function () {
return this.aw;
},
set: function (a) {
this.aw = a;
this.g("AscendingCaption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnSortOptionsDescription.prototype, "descendingCaption", {
get: function () {
return this.ax;
},
set: function (a) {
this.ax = a;
this.g("DescendingCaption");
},
enumerable: false,
configurable: true
});
Object.defineProperty(GridColumnSortOptionsDescription.prototype, "sortDirection", {
get: function () {
return this.ay;
},
set: function (a) {
this.ay = a;
this.g("SortDirection");
},
enumerable: false,
configurable: true
});
GridColumnSortOptionsDescription.$t = markType(GridColumnSortOptionsDescription, 'GridColumnSortOptionsDescription', GridColumnOptionsSimpleSectionBaseDescription.$);
return GridColumnSortOptionsDescription;
}(GridColumnOptionsSimpleSectionBaseDescription));
export { GridColumnSortOptionsDescription };