8 lines
196 B
TypeScript
8 lines
196 B
TypeScript
|
import { IThemeIconsItem } from "./itheme-icons-item";
|
||
|
|
||
|
export interface IThemeIconsAccents {
|
||
|
iconDefinitions: {
|
||
|
_folder_open: IThemeIconsItem;
|
||
|
_folder_open_build: IThemeIconsItem;
|
||
|
}
|
||
|
}
|