import { EnvironmentWithConfiguration } from "./environment"; export interface InquirerChoices { name: string; value: string; checked?: boolean; } export interface InquirerEnvironmentChoices { name: string; value: EnvironmentWithConfiguration; checked?: boolean; type?: string; message?: string; }