refactor: js output
This commit is contained in:
parent
1aa28c2a34
commit
c6704c3a04
96 changed files with 3816 additions and 147 deletions
9
src/commands/DoneCommand.d.ts
vendored
Normal file
9
src/commands/DoneCommand.d.ts
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
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>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue