()
| 178 | } |
| 179 | |
| 180 | toCell(): TableCell { |
| 181 | return { |
| 182 | type: this.type as CellType, |
| 183 | row: this.row, |
| 184 | span: this.span, |
| 185 | width: this.width, |
| 186 | text: this.text, |
| 187 | classNames: this.classNames, |
| 188 | id: this.id, |
| 189 | level: this.level, |
| 190 | borderFlags: this.borderFlags, |
| 191 | x: this.x, |
| 192 | y: this.y, |
| 193 | }; |
| 194 | } |
| 195 | } |