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;
}
