interface Completion {
    completionArray?: string[];
    completionPath?: string;
    merge?: boolean;
}

Properties

completionArray?: string[]

Static list of possible completion values.

completionPath?: string

Path to javascript module that will return the list of possible completion values.

merge?: boolean

When set to true the provided custom completion will be merged to yargs default one.