namespace Spectre.Console.Rendering;
///
/// Defines the different rendering parts of a .
///
public enum TreeGuidePart
{
///
/// Represents a space.
///
Space,
///
/// Connection between siblings.
///
Continue,
///
/// Branch from parent to child.
///
Fork,
///
/// Branch from parent to child for the last child in a set.
///
End,
}