vsc-material-theme/extensions/interfaces/ipaths.ts

31 lines
367 B
TypeScript
Raw Normal View History

2018-04-20 20:07:36 +02:00
export interface IPaths {
/**
* Dist dir
*/
DIST: string;
/**
* Icons dir
*/
ICONS: string;
/**
* Src dir
*/
SRC: string;
/**
* Themes dir
*/
THEMES: string;
/**
* Extension directory
*/
VSIX_DIR: string;
2018-08-30 09:28:26 +02:00
/**
* Internal Extensions directory
*/
EXT_DIR: string;
/**
* UI directory
*/
UI: string;
}