define(["require", "exports", "@syncfusion/ej2-treegrid"], function (require, exports, ej2_treegrid_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Freeze = (function () {
function Freeze(gantt) {
this.parent = gantt;
ej2_treegrid_1.TreeGrid.Inject(ej2_treegrid_1.Freeze);
this.parent.treeGrid.frozenColumns = this.parent.frozenColumns;
}
Freeze.prototype.getModuleName = function () {
return 'freeze';
};
Freeze.prototype.destroy = function () {
};
return Freeze;
}());
exports.Freeze = Freeze;
});
|