Type Buffer.tabs

This commit is contained in:
Daniel Imms
2022-10-16 06:58:20 -07:00
parent 807183bba6
commit 7796b4101a
2 changed files with 1 additions and 4 deletions
@@ -190,8 +190,6 @@ export class OverviewRulerRenderer extends Disposable {
}
private _renderColorZone(zone: IColorZone): void {
// TODO: Is _decorationElements needed?
this._ctx.fillStyle = zone.color;
this._ctx.fillRect(
/* x */ drawX[zone.position || 'full'],
+1 -2
View File
@@ -32,8 +32,7 @@ export class Buffer implements IBuffer {
public x: number = 0;
public scrollBottom: number;
public scrollTop: number;
// TODO: Type me
public tabs: any;
public tabs: { [column: number]: boolean | undefined } = {};
public savedY: number = 0;
public savedX: number = 0;
public savedCurAttrData = DEFAULT_ATTR_DATA.clone();