namespace Spectre.Console { /// /// Represents a prompt. /// /// The prompt result type. public interface IPrompt { /// /// Shows the prompt. /// /// The console. /// The prompt input result. T Show(IAnsiConsole console); } }