@semo/cli
Version:
A command line tools dispatcher
7 lines (6 loc) • 321 B
TypeScript
export declare const plugin = "semo";
export declare const command = "create <name> [repo] [branch]";
export declare const aliases = "c";
export declare const desc = "Create a new project from specific repo";
export declare const builder: (yargs: any) => void;
export declare const handler: (argv: any) => Promise<void>;