9 lines
407 B
TypeScript
9 lines
407 B
TypeScript
import type { Argv, ArgumentsCamelCase } from "yargs";
|
|
import { CLICommand } from "../cli/CLICommand.js";
|
|
export declare class DoneCommand extends CLICommand {
|
|
readonly name = "done <id>";
|
|
readonly help = "Mark an issue as done";
|
|
readonly description = "Set issue to done (must be on issue branch)";
|
|
addArguments(yargs: Argv): Argv;
|
|
execute(args: ArgumentsCamelCase): Promise<number>;
|
|
}
|