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 { GroupCommand, LeafCommand } from 'madlad';
export declare type Command = (LeafCommand & Partial<{
    [key: string]: any;
}>) | (GroupCommand & Partial<{
    [key: string]: any;
}>);
export declare type InitedCommand = {
    command: Command;
    subCommands: InitedCommand[];
};
export declare function isGroupCommand(command: Command): command is GroupCommand;
export declare function isLeafCommand(command: Command): command is LeafCommand;