Merge pull request #23979 from ernest-galbrun/master

types/chrome: Fix the type of the window object provided by the PanelShownEvent
This commit is contained in:
Bowden Kelly
2018-03-01 10:34:08 -08:00
committed by GitHub

View File

@@ -1740,7 +1740,7 @@ declare namespace chrome.devtools.network {
* Availability: Since Chrome 18.
*/
declare namespace chrome.devtools.panels {
export interface PanelShownEvent extends chrome.events.Event<(window: chrome.windows.Window) => void> {}
export interface PanelShownEvent extends chrome.events.Event<(window: Window) => void> {}
export interface PanelHiddenEvent extends chrome.events.Event<() => void> {}