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 { detectShell, generateCompletion, getShellPaths } from './shell';
import { Application, Argument, Command, CommandConstructor, Context, Group, GroupCommand, LeafCommand, Parser, Printer } from './type';
export declare function createParser(options?: {
    printer?: Printer;
    application?: Application;
    pathResolver?: (string: string) => Promise<string[]>;
    exitCodeForParsingErrors?: number;
}): Parser;
export { Group, Command, Argument, Parser, Context, detectShell, getShellPaths, generateCompletion, LeafCommand, GroupCommand, CommandConstructor, };