94189a72c3
* refactor(deps): added tslint, cleanup, and activationEvents modified * refactor(lint): linting... * refactor(changelog): changelo method refactor (should be tested) * refactor(theme-icons): linting and small refactor * refactor(accents-setter): linting and small refactor * chore(travis): added travis file
17 lines
523 B
TypeScript
17 lines
523 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;
|
|
};
|
|
}
|