12 lines
No EOL
323 B
TypeScript
12 lines
No EOL
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;
|
|
}
|
|
} |