define(["require", "exports", "@syncfusion/ej2-grids"], function (require, exports, ej2_grids_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ColumnChooser = (function () {
function ColumnChooser(parent) {
ej2_grids_1.Grid.Inject(ej2_grids_1.ColumnChooser);
this.parent = parent;
}
ColumnChooser.prototype.openColumnChooser = function (X, Y) {
return this.parent.grid.columnChooserModule.openColumnChooser(X, Y);
};
ColumnChooser.prototype.destroy = function () {
};
ColumnChooser.prototype.getModuleName = function () {
return 'ColumnChooser';
};
return ColumnChooser;
}());
exports.ColumnChooser = ColumnChooser;
});
|