UNPKG

474 BPlain TextView Raw
1import Creator from './create/creator'
2import Project from './create/project'
3import doctor from './doctor'
4import { getRootPath } from './util'
5import { type ConfigEnv, type UserConfigExport, type UserConfigFn, defineConfig } from './util/defineConfig'
6
7export default {
8 doctor,
9 Project,
10 Creator,
11 defineConfig,
12 getRootPath
13}
14
15export {
16 type ConfigEnv,
17 type UserConfigExport,
18 type UserConfigFn,
19 Creator,
20 defineConfig,
21 doctor,
22 getRootPath,
23 Project
24}