mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-05-04 16:42:50 +08:00
17 lines
399 B
C#
17 lines
399 B
C#
namespace Spectre.Console.Cli;
|
|
|
|
/// <summary>
|
|
/// Represents the remaining arguments.
|
|
/// </summary>
|
|
public interface IRemainingArguments
|
|
{
|
|
/// <summary>
|
|
/// Gets the parsed remaining arguments.
|
|
/// </summary>
|
|
ILookup<string, string?> Parsed { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the raw, non-parsed remaining arguments.
|
|
/// </summary>
|
|
IReadOnlyList<string> Raw { get; }
|
|
} |