26 lines
No EOL
367 B
TypeScript
26 lines
No EOL
367 B
TypeScript
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;
|
|
} |