2017-05-24 00:46:34 +02:00
|
|
|
export interface IPaths {
|
|
|
|
/**
|
|
|
|
* Dist dir
|
|
|
|
* @type {string}
|
|
|
|
* @memberof IPaths
|
|
|
|
*/
|
|
|
|
DIST: string;
|
|
|
|
/**
|
|
|
|
* Icons dir
|
|
|
|
* @type {string}
|
|
|
|
* @memberof IPaths
|
|
|
|
*/
|
|
|
|
ICONS: string;
|
|
|
|
/**
|
|
|
|
* Src dir
|
|
|
|
* @type {string}
|
|
|
|
* @memberof IPaths
|
|
|
|
*/
|
|
|
|
SRC: string;
|
|
|
|
/**
|
|
|
|
* Themes dir
|
|
|
|
* @type {string}
|
|
|
|
* @memberof IPaths
|
|
|
|
*/
|
|
|
|
THEMES: string;
|
2017-06-17 16:52:27 +02:00
|
|
|
/**
|
|
|
|
* Extension directory
|
|
|
|
* @type {string}
|
|
|
|
* @memberof IPaths
|
|
|
|
*/
|
|
|
|
VSIX_DIR: string;
|
2017-05-24 00:46:34 +02:00
|
|
|
}
|