From 8dd4884dc1fd420d8a1c2cc7589c4d9e0062b1c1 Mon Sep 17 00:00:00 2001 From: Paris Kasidiaris Date: Fri, 30 Jun 2017 14:04:03 +0300 Subject: [PATCH] Add `buffers` to the `ITerminal` --- src/Interfaces.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Interfaces.ts b/src/Interfaces.ts index 25a85c56d6..ae2283b541 100644 --- a/src/Interfaces.ts +++ b/src/Interfaces.ts @@ -32,6 +32,7 @@ export interface ITerminal { cursorState: number; defAttr: number; scrollback: number; + buffers: any; // This should be a `BufferSet` class, but it would result in circular dependency buffer: any; // This should be a `Buffer` class, but it would result in circular dependency viewport: any; // This should be a `Viewport` class, but it would result in circular dependency