IUnixInput.cs 213 B

123456
  1. namespace Terminal.Gui.Drivers;
  2. /// <summary>
  3. /// Wraps IConsoleInput for Unix console input events (char). Needed to support Mocking in tests.
  4. /// </summary>
  5. internal interface IUnixInput : IInput<char>;