30 lines
367 B
TypeScript
30 lines
367 B
TypeScript
export interface IPaths {
|
|
/**
|
|
* Dist dir
|
|
*/
|
|
DIST: string;
|
|
/**
|
|
* Icons dir
|
|
*/
|
|
ICONS: string;
|
|
/**
|
|
* Src dir
|
|
*/
|
|
SRC: string;
|
|
/**
|
|
* Themes dir
|
|
*/
|
|
THEMES: string;
|
|
/**
|
|
* Extension directory
|
|
*/
|
|
VSIX_DIR: string;
|
|
/**
|
|
* Internal Extensions directory
|
|
*/
|
|
EXT_DIR: string;
|
|
/**
|
|
* UI directory
|
|
*/
|
|
UI: string;
|
|
}
|