using System; namespace Spectre.Console { /// /// Represents the console's input mechanism. /// public interface IAnsiConsoleInput { /// /// Reads a key from the console. /// /// Whether or not to intercept the key. /// The key that was read. ConsoleKeyInfo ReadKey(bool intercept); } }