mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-19 13:28:16 +08:00
20 lines
453 B
C#
20 lines
453 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
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; }
|
|
} |