Merge pull request #5829 from cstefan/cstefan-patch-1

Update chrome-app.d.ts / Added missing removeListener WindowEvent
This commit is contained in:
Masahiro Wakame
2015-09-27 12:45:51 +09:00

View File

@@ -138,6 +138,7 @@ declare module chrome.app.window {
interface WindowEvent {
addListener(callback: () => void): void;
removeListener(callback: () => void): void;
}
var onBoundsChanged: WindowEvent;