10 lines
178 B
TypeScript
10 lines
178 B
TypeScript
|
interface IIconObject {
|
||
|
iconPath: string
|
||
|
}
|
||
|
|
||
|
export interface IThemeIconsAccents {
|
||
|
iconDefinitions: {
|
||
|
_folder_open: IIconObject;
|
||
|
_folder_open_build: IIconObject;
|
||
|
}
|
||
|
}
|