mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-07 17:23:56 -05:00
* Merge from vscode 3c6f6af7347d38e87bc6406024e8dcf9e9bce229 * skip failing tests * update mac build image
14 lines
652 B
TypeScript
14 lines
652 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { IView, IViewPaneContainer } from 'vs/workbench/common/views';
|
|
import { IComposite } from 'vs/workbench/common/composite';
|
|
|
|
export interface IPaneComposite extends IComposite {
|
|
openView(id: string, focus?: boolean): IView;
|
|
getViewPaneContainer(): IViewPaneContainer;
|
|
saveState(): void;
|
|
}
|