mime-todo-cli/src/commands/StartCommand.d.ts
2026-03-15 05:11:59 +01:00

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>;
}