| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1× 1× 1× 1× 278566× 278566× 278566× 1× 372× 372× 372× 1× 1× | define(["require", "exports", "@syncfusion/ej2-base"], function (require, exports, ej2_base_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Cell = (function () {
function Cell(options) {
this.isSpanned = false;
this.isRowSpanned = false;
ej2_base_1.merge(this, options);
}
Cell.prototype.clone = function () {
var cell = new Cell({});
ej2_base_1.merge(cell, this);
return cell;
};
return Cell;
}());
exports.Cell = Cell;
});
|