Fix typings files (#17509)

This commit is contained in:
Charles Gagnon
2021-10-27 12:29:00 -07:00
committed by GitHub
parent 7a5ad9f3aa
commit ca20ae4d64
2 changed files with 33 additions and 33 deletions

View File

@@ -492,31 +492,6 @@ declare module 'azdata' {
alwaysShowTabs?: boolean;
}
/**
* Represents the tab of TabbedPanelComponent
*/
export interface Tab {
/**
* Title of the tab
*/
title: string;
/**
* Content component of the tab
*/
content: Component;
/**
* Id of the tab
*/
id: string;
/**
* Icon of the tab
*/
icon?: IconPath;
}
/**
* Represents the tab group of TabbedPanelComponent
*/