Fix declarative table display issues with ML ext (#13529)

* Fix declarative table display issues with ML ext

* Fix test
This commit is contained in:
Charles Gagnon
2020-11-24 12:55:04 -08:00
committed by GitHub
parent f4a6b42b3a
commit 40ca82c63d
6 changed files with 32 additions and 10 deletions

View File

@@ -419,7 +419,7 @@ declare module 'azdata' {
}
export interface DeclarativeTableCellValue {
value: string | number | boolean;
value: string | number | boolean | Component;
ariaLabel?: string;
style?: CssStyles
}