mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-30 01:38:01 +01:00
16 lines
471 B
C#
16 lines
471 B
C#
namespace Terminal.Gui;
|
|
|
|
/// <summary>
|
|
/// Interface for detecting sixel support. Either through
|
|
/// ansi requests to terminal or config file etc.
|
|
/// </summary>
|
|
public interface ISixelSupportDetector
|
|
{
|
|
/// <summary>
|
|
/// Gets the supported sixel state e.g. by sending Ansi escape sequences
|
|
/// or from a config file etc.
|
|
/// </summary>
|
|
/// <returns>Description of sixel support.</returns>
|
|
public SixelSupportResult Detect ();
|
|
}
|