From 5c92f1a913ffafceaf417f2df01a6efac01b998c Mon Sep 17 00:00:00 2001 From: Matthew Kimber Date: Thu, 22 Nov 2012 00:50:27 -0700 Subject: [PATCH] Added a return type to the createStatusButton method. --- chrome/chrome.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/chrome.d.ts b/chrome/chrome.d.ts index 39c53bda86..4fec16c4c7 100644 --- a/chrome/chrome.d.ts +++ b/chrome/chrome.d.ts @@ -610,7 +610,7 @@ declare module chrome.devtools.panels { } interface ExtensionPanel { - createStatusButton(iconPath: string, tooltipText: string, disabled: bool): void; + createStatusButton(iconPath: string, tooltipText: string, disabled: bool): Button; onShown: PanelShownEvent; onHidden: PanelHiddenEvent; onSearch: PanelSearchEvent;