refactor: js output

This commit is contained in:
Tiara Rodney 2026-03-15 05:11:59 +01:00
parent 1aa28c2a34
commit c6704c3a04
Signed by: tiara
GPG key ID: 5CD8EC1D46106723
96 changed files with 3816 additions and 147 deletions

8
src/commands/SprintsCommand.d.ts vendored Normal file
View file

@ -0,0 +1,8 @@
import type { ArgumentsCamelCase } from "yargs";
import { CLICommand } from "../cli/CLICommand.js";
export declare class SprintsCommand extends CLICommand {
readonly name = "sprints";
readonly help = "List all sprints";
readonly description = "List all sprints in the TODO file";
execute(args: ArgumentsCamelCase): Promise<number>;
}