Repository URL to install this package:
|
Version:
0.6.0 ▾
|
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, };