From 4effe1f1d9ab55f83de4b7e546c1e98c6ea0e08b 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 2dafd909..b41a7d1a 100644 --- a/src/Interfaces.ts +++ b/src/Interfaces.ts @@ -33,6 +33,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