Files
azuredatastudio/src/vs/workbench/common/viewlet.ts
2019-03-15 13:09:45 -07:00

15 lines
589 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 { IComposite } from 'vs/workbench/common/composite';
export interface IViewlet extends IComposite {
/**
* Returns the minimal width needed to avoid any content horizontal truncation
*/
getOptimalWidth(): number | null;
}