namespace Spectre.Console.Cli; /// /// Represents the remaining arguments. /// public interface IRemainingArguments { /// /// Gets the parsed remaining arguments. /// ILookup Parsed { get; } /// /// Gets the raw, non-parsed remaining arguments. /// IReadOnlyList Raw { get; } }