Change themeColor to color in ThemeIcon api

Fixes #109459
This commit is contained in:
Alex Ross
2020-10-27 16:16:44 +01:00
parent 22f848ede4
commit 6b413891c5
4 changed files with 6 additions and 6 deletions

View File

@@ -2181,11 +2181,11 @@ export class ThemeIcon {
static Folder: ThemeIcon;
readonly id: string;
readonly themeColor?: ThemeColor;
readonly color?: ThemeColor;
constructor(id: string, color?: ThemeColor) {
this.id = id;
this.themeColor = color;
this.color = color;
}
}
ThemeIcon.File = new ThemeIcon('file');