src/types.ts 355 B raw
1
export interface TemplateInfo {
2
	branch: string;
3
	description: string;
4
}
5
6
export interface ProjectOptions {
7
	yes?: boolean;
8
	typescript?: boolean;
9
	repo?: string;
10
	template?: string;
11
	branch?: string;
12
	rpc?: boolean;
13
}
14
15
export interface ProjectResult {
16
	projectName: string;
17
	gitInitialized: boolean;
18
	dependenciesInstalled: boolean;
19
	template: string;
20
}