net-cli
Version:
14 lines (13 loc) • 404 B
TypeScript
export type VueVersion = 'vue3-cross' | 'vue3';
export type SubProjectType = 'admin' | 'h5' | 'tgs' | 'match-apply' | 'match-apply-mobile';
export interface InitVue3Options {
downloadPath: string;
vueVersion: VueVersion;
}
export interface InitSubProjectOptions {
subProjectName: string;
downloadPath: string;
vueVersion: VueVersion;
type?: SubProjectType;
config?: string;
}