9 lines
409 B
TypeScript
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>;
|
|
}
|