namespace Terminal.Gui; /// /// Interface for v2 driver abstraction layer /// public interface IConsoleDriverFacade { /// /// Class responsible for processing native driver input objects /// e.g. into events /// and detecting and processing ansi escape sequences. /// public IInputProcessor InputProcessor { get; } }