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

9 lines
409 B
TypeScript

import type { Argv, ArgumentsCamelCase } from "yargs";
import { CLICommand } from "../cli/CLICommand.js";
export declare class IssueShowCommand extends CLICommand {
readonly name = "show <id>";
readonly help = "Show details for a single issue";
readonly description = "Print all fields for one issue";
addArguments(yargs: Argv): Argv;
execute(args: ArgumentsCamelCase): Promise<number>;
}