bookr-cli
Version:
A terminal-based CLI tool to book time in Jira using the Tempo plugin by parsing your current Git branch name
19 lines • 484 B
TypeScript
import type React from 'react';
interface WorklogEntry {
tempoId?: string;
jiraId?: string;
issueKey: string;
timeSpentSeconds: number;
summary: string;
source?: 'tempo' | 'jira';
}
interface WorklogTableProps {
worklogs: WorklogEntry[];
title?: string;
showTempoId?: boolean;
showJiraId?: boolean;
showSource?: boolean;
}
export declare const WorklogTable: React.FC<WorklogTableProps>;
export {};
//# sourceMappingURL=WorklogTable.d.ts.map