Promote CssStyles to stable API (#14824)

* Promote CssStyles to stable API

* add comment

* Fix compile
This commit is contained in:
Charles Gagnon
2021-03-22 12:16:59 -07:00
committed by GitHub
parent 1a74d0f3d4
commit 8fb54710fb
6 changed files with 17 additions and 14 deletions

View File

@@ -321,7 +321,7 @@ class TestComponentBase implements azdata.Component {
updateProperty(key: string, value: any): Thenable<void> {
throw new Error('Method not implemented');
}
updateCssStyles(cssStyles: { [key: string]: string; }): Thenable<void> {
updateCssStyles(cssStyles: azdata.CssStyles): Thenable<void> {
throw new Error('Method not implemented');
}
onValidityChanged: vscode.Event<boolean> = undefined;