export interface CreateSolutionInput { projectName: string; target: string; noGit: boolean; noInstall: boolean; gitReference: string; gitReferenceType: string; debug: boolean; default: boolean; } export type CliResults = Partial< Omit > & { installationType?: string; branch?: string; debug?: boolean; };