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

27 lines
301 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;
/**
* UI directory
*/
UI: string;
}