UNPKG

bookr-cli

Version:

A terminal-based CLI tool to book time in Jira using the Tempo plugin by parsing your current Git branch name

16 lines 416 B
import type React from 'react'; export interface ProgressRow { dayName: string; date: string; hoursLogged: number; hoursRequired?: number; percentage: number | string; } interface ProgressTableProps { rows: ProgressRow[]; title?: string; showWorkload?: boolean; } export declare const ProgressTable: React.FC<ProgressTableProps>; export {}; //# sourceMappingURL=ProgressTable.d.ts.map