all files / treegrid/actions/ command-column.js

100% Statements 11/11
100% Branches 0/0
100% Functions 5/5
100% Lines 11/11
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18     13668×          
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;
});