mirror of
https://github.com/spectreconsole/spectre.console.git
synced 2025-12-26 15:57:58 +01:00
17 lines
490 B
C#
17 lines
490 B
C#
namespace Spectre.Console;
|
|
|
|
/// <summary>
|
|
/// A console capable of writing ANSI escape sequences.
|
|
/// </summary>
|
|
public static partial class AnsiConsole
|
|
{
|
|
/// <summary>
|
|
/// Creates a new <see cref="LiveDisplay"/> instance.
|
|
/// </summary>
|
|
/// <param name="target">The target renderable to update.</param>
|
|
/// <returns>A <see cref="LiveDisplay"/> instance.</returns>
|
|
public static LiveDisplay Live(IRenderable target)
|
|
{
|
|
return Console.Live(target);
|
|
}
|
|
} |