namespace Spectre.Console.Json; /// /// Represents a JSON parser. /// public interface IJsonParser { /// /// Parses the provided JSON into an abstract syntax tree. /// /// The JSON to parse. /// An instance. JsonSyntax Parse(string json); }