You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The tab in which to close the side panel. If a tab-specific side panel is open in the specified tab, it will be closed for that tab. At least one of this or `windowId` must be provided. */
14433
+
tabId: number;
14434
+
/** The window in which to close the side panel. If a global side panel is open in the specified window, it will be closed for all tabs in that window where no tab-specific panel is active. At least one of this or `tabId` must be provided. */
14435
+
windowId?: number | undefined;
14436
+
}
14437
+
| {
14438
+
/** The tab in which to close the side panel. If a tab-specific side panel is open in the specified tab, it will be closed for that tab. At least one of this or `windowId` must be provided. */
14439
+
tabId?: number | undefined;
14440
+
/** The window in which to close the side panel. If a global side panel is open in the specified window, it will be closed for all tabs in that window where no tab-specific panel is active. At least one of this or `tabId` must be provided. */
14441
+
windowId: number;
14442
+
};
14443
+
14413
14444
export interface GetPanelOptions {
14414
14445
/**
14415
14446
* If specified, the side panel options for the given tab will be returned.
0 commit comments