relax supportThemeIcons

This commit is contained in:
Johannes Rieken
2021-06-16 14:53:25 +02:00
parent b5da2d0f10
commit 16facd8645
2 changed files with 7 additions and 3 deletions

View File

@@ -1332,6 +1332,10 @@ export class MarkdownString implements vscode.MarkdownString {
return this.#delegate.supportThemeIcons;
}
set supportThemeIcons(value: boolean | undefined) {
this.#delegate.supportThemeIcons = value;
}
appendText(value: string): vscode.MarkdownString {
this.#delegate.appendText(value);
return this;