nest-commander
Version:
A module for making CLI applications with NestJS. Decorators for running commands and separating out config parsers included. This package works on top of commander.
20 lines (19 loc) • 459 B
TypeScript
export interface CompletionFactoryOptions {
/**
* @description Your CLI command name
*/
cmd: string;
/**
* @description Support Fig completion out of the box
* @default false
*/
fig?: boolean;
/**
* @description Use native shell completion with `tab`
* @default false
*/
nativeShell?: false | NativeShellConfiguration;
}
export interface NativeShellConfiguration {
executablePath: string;
}