17 lines
545 B
TypeScript
17 lines
545 B
TypeScript
|
import { IThemeIconsItem } from "./itheme-icons-item";
|
||
|
|
||
|
export interface IThemeIconsVariants {
|
||
|
iconDefinitions: {
|
||
|
"_folder_dark": IThemeIconsItem;
|
||
|
"_folder_dark_build": IThemeIconsItem;
|
||
|
"_folder_light": IThemeIconsItem;
|
||
|
"_folder_light_build": IThemeIconsItem;
|
||
|
"_folder_vscode": IThemeIconsItem;
|
||
|
"_folder_gulp": IThemeIconsItem;
|
||
|
"_folder_node": IThemeIconsItem;
|
||
|
"_folder_images": IThemeIconsItem;
|
||
|
"_folder_js": IThemeIconsItem;
|
||
|
"_folder_src": IThemeIconsItem;
|
||
|
"_folder_assets": IThemeIconsItem;
|
||
|
}
|
||
|
}
|