Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { Argument, Command, Group } from './type';
export declare function findLongOption(options: Argument[], string: string): Argument | undefined;
export declare function findOption(options: Argument[], string: string): Argument | undefined;
export declare function isOption(string: string): boolean;
export declare function isOptionPassed(argv: string[], option: Argument): boolean;
export declare function findCommandByFullPath(groups: Group[], commands: Command[], fullPath: string): Command | undefined;
export declare function findGroupAndCommand(argv: string[], groups: Group[], commands: Command[], group?: Group): {
    group?: Group;
    command?: Command;
};