mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-29 09:18:01 +01:00
10 lines
223 B
C#
10 lines
223 B
C#
#nullable enable
|
|
namespace Terminal.Gui;
|
|
|
|
internal record AnsiResponseExpectation (string Terminator, Action<IHeld> Response)
|
|
{
|
|
public bool Matches (string cur)
|
|
{
|
|
return cur.EndsWith (Terminator);
|
|
}
|
|
} |