using Spectre.Console.Rendering;
namespace Spectre.Console;
///
/// A console capable of writing ANSI escape sequences.
///
public static partial class AnsiConsole
{
///
/// Creates a new instance.
///
/// The target renderable to update.
/// A instance.
public static LiveDisplay Live(IRenderable target)
{
return Console.Live(target);
}
}