vscode-icons/vscode-icons

View on GitHub
src/models/iconSchema/iconDefinition.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { IIconPath } from './iconPath';

export interface IIconDefinition {
  _file: IIconPath;
  _folder: IIconPath;
  _folder_open: IIconPath;
  _file_light: IIconPath;
  _folder_light: IIconPath;
  _folder_light_open: IIconPath;
  _root_folder: IIconPath;
  _root_folder_open: IIconPath;
  _root_folder_light: IIconPath;
  _root_folder_light_open: IIconPath;
}