12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
|
export interface IThemeIconsVariantsItem {
|
||
|
iconPath: string;
|
||
|
}
|
||
|
|
||
|
export interface IThemeIconsVariants {
|
||
|
iconDefinitions: {
|
||
|
"_folder_dark": IThemeIconsVariantsItem;
|
||
|
"_folder_dark-build": IThemeIconsVariantsItem;
|
||
|
"_file_folder": IThemeIconsVariantsItem;
|
||
|
"_file_folder-build": IThemeIconsVariantsItem;
|
||
|
}
|
||
|
}
|