using Spectre.Console.Composition;
namespace Spectre.Console
{
///
/// A console capable of writing ANSI escape sequences.
///
public static partial class AnsiConsole
{
///
/// Renders the specified object to the console.
///
/// The object to render.
public static void Render(IRenderable renderable)
{
Console.Render(renderable);
}
}
}