From 37a1220ee724f2fb1f892b12af22db4b64f14dac Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 21 Dec 2017 13:59:27 -0800 Subject: [PATCH] Add applyAddon typings Part of #1018 See #1130 --- typings/xterm.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index 97e4a4a3..77371f04 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -504,6 +504,6 @@ declare module 'xterm' { * available to all newly created Terminals. * @param addon The addon to load. */ - static loadAddon(addon: 'attach' | 'fit' | 'fullscreen' | 'search' | 'terminado' | 'winptyCompat'): void; + static applyAddon(addon: any): void; } }