namespace Spectre.Console; /// /// Represents something that can overflow. /// public interface IOverflowable { /// /// Gets or sets the text overflow strategy. /// Overflow? Overflow { get; set; } }