From c5db2d4088aeae2d695d96d416141dd944533459 Mon Sep 17 00:00:00 2001 From: cstefan Date: Tue, 15 Sep 2015 11:50:36 +0200 Subject: [PATCH] Update chrome-app.d.ts Added missing removeListener WindowEvent --- chrome/chrome-app.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/chrome-app.d.ts b/chrome/chrome-app.d.ts index 5cfa0fbce4..f75f7dca65 100644 --- a/chrome/chrome-app.d.ts +++ b/chrome/chrome-app.d.ts @@ -138,6 +138,7 @@ declare module chrome.app.window { interface WindowEvent { addListener(callback: () => void): void; + removeListener(callback: () => void): void; } var onBoundsChanged: WindowEvent;