8 lines
350 B
TypeScript
8 lines
350 B
TypeScript
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>;
|
|
}
|