namespace Spectre.Console;
///
/// Represents something that is expandable.
///
public interface IExpandable
{
///
/// Gets or sets a value indicating whether or not the object should
/// expand to the available space. If false, the object's
/// width will be auto calculated.
///
bool Expand { get; set; }
}