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