diff --git a/completions.go b/completions.go index fd30e76c..a366304d 100644 --- a/completions.go +++ b/completions.go @@ -129,7 +129,7 @@ type CompletionOptions struct { type Completion = string // CompletionFunc is a function that provides completion results. -type CompletionFunc func(cmd *Command, args []string, toComplete string) ([]Completion, ShellCompDirective) +type CompletionFunc = func(cmd *Command, args []string, toComplete string) ([]Completion, ShellCompDirective) // CompletionWithDesc returns a [Completion] with a description by using the TAB delimited format. func CompletionWithDesc(choice string, description string) Completion {