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