mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Update addons/xterm-addon-serialize/src/MyBufferCell.ts
Co-authored-by: Daniel Imms <tyriar@tyriar.com>
This commit is contained in:
@@ -4,7 +4,7 @@ import { IBufferCell } from 'xterm';
|
||||
* This is a dummy buffer cell to hold data from real buffer cell
|
||||
*/
|
||||
export class MyBufferCell implements IBufferCell {
|
||||
constructor (private _cell: IBufferCell) {}
|
||||
constructor(private _cell: IBufferCell) {}
|
||||
private _width: number = this._cell.getWidth();
|
||||
private _chars: string = this._cell.getChars();
|
||||
private _code: number = this._cell.getCode();
|
||||
|
||||
Reference in New Issue
Block a user