9 lines
412 B
TypeScript
9 lines
412 B
TypeScript
import type { Argv, ArgumentsCamelCase } from "yargs";
|
|
import { CLICommand } from "../cli/CLICommand.js";
|
|
export declare class StartCommand extends CLICommand {
|
|
readonly name = "start <id>";
|
|
readonly help = "Start work on an issue";
|
|
readonly description = "Set issue to in-progress (must be on develop)";
|
|
addArguments(yargs: Argv): Argv;
|
|
execute(args: ArgumentsCamelCase): Promise<number>;
|
|
}
|