UNPKG

net-cli

Version:
13 lines (12 loc) 336 B
export type VueVersion = 'vue3-cross' | 'vue3'; export type SubProjectType = 'admin' | 'h5'; export interface InitVue3Options { downloadPath: string; vueVersion: VueVersion; } export interface InitSubProjectOptions { subProjectName: string; downloadPath: string; vueVersion: VueVersion; type?: SubProjectType; }