#nullable enable namespace Terminal.Gui; public interface IAnsiResponseParser { AnsiResponseParserState State { get; } void ExpectResponse (string terminator, Action response); /// /// Returns true if there is an existing expectation (i.e. we are waiting a response /// from console) for the given . /// /// /// bool IsExpecting (string requestTerminator); }