Clean up Loading Component typings (#13785)

* Clean up Loading Component typings

* add properties to impl
This commit is contained in:
Charles Gagnon
2020-12-11 12:57:46 -08:00
committed by GitHub
parent 496fe0afa5
commit a926f87965
3 changed files with 38 additions and 2 deletions

View File

@@ -1673,6 +1673,30 @@ class LoadingComponentWrapper extends ComponentWrapper implements azdata.Loading
this.setProperty('loading', value);
}
public get showText(): boolean {
return this.properties['showText'];
}
public set showText(value: boolean) {
this.setProperty('showText', value);
}
public get loadingText(): string {
return this.properties['loadingText'];
}
public set loadingText(value: string) {
this.setProperty('loadingText', value);
}
public get loadingCompletedText(): string {
return this.properties['loadingCompletedText'];
}
public set loadingCompletedText(value: string) {
this.setProperty('loadingCompletedText', value);
}
public get component(): azdata.Component {
return this.items[0];
}