Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public ArgumentCompleterAttribute(ScriptBlock scriptBlock)
/// <summary>
/// A type specified by the <see cref="ArgumentCompleterAttribute"/> must implement this interface.
/// </summary>
#nullable enable
public interface IArgumentCompleter
{
/// <summary>
Expand All @@ -82,6 +83,7 @@ IEnumerable<CompletionResult> CompleteArgument(
CommandAst commandAst,
IDictionary fakeBoundParameters);
}
#nullable restore

/// <summary>
/// </summary>
Expand Down