namespace Terminal.Gui;
///
/// Interface for subcomponent of a which
/// can translate the raw console input type T (which typically varies by
/// driver) to the shared Terminal.Gui class.
///
///
public interface IKeyConverter
{
///
/// Converts the native keyboard class read from console into
/// the shared class used by Terminal.Gui views.
///
///
///
Key ToKey (T value);
}