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