INetInput.cs 235 B

1234567
  1. namespace Terminal.Gui.Drivers;
  2. /// <summary>
  3. /// Wraps IConsoleInput for .NET console input events (ConsoleKeyInfo). Needed to support Mocking in tests.
  4. /// </summary>
  5. internal interface INetInput : IInput<ConsoleKeyInfo>
  6. { }