11 lines
174 B
TypeScript
11 lines
174 B
TypeScript
|
import { IPaths } from '../interfaces/ipaths';
|
||
|
|
||
|
const PATHS: IPaths = {
|
||
|
DIST: './dist',
|
||
|
ICONS: './icons',
|
||
|
SRC: './src',
|
||
|
THEMES: './themes',
|
||
|
};
|
||
|
|
||
|
export default PATHS;
|