simple-task-master
Version:
A simple command-line task management tool
15 lines • 309 B
TypeScript
/**
* Show task command
*/
import { Command } from 'commander';
/**
* Show a specific task
*/
export declare function showTask(idStr: string, options: {
format?: string;
}): Promise<void>;
/**
* Create the show command
*/
export declare const showCommand: Command;
//# sourceMappingURL=show.d.ts.map