AnsiResponseExpectation.cs 231 B

1234567
  1. #nullable enable
  2. namespace Terminal.Gui;
  3. internal record AnsiResponseExpectation (string? Terminator, Action<IHeld> Response, Action? Abandoned)
  4. {
  5. public bool Matches (string? cur) { return cur!.EndsWith (Terminator!); }
  6. }