bookr-cli
Version:
A terminal-based CLI tool to book time in Jira using the Tempo plugin by parsing your current Git branch name
15 lines • 387 B
TypeScript
/**
* Extract text from JIRA comment (handles both string and structured formats)
*/
export declare function extractCommentText(comment: string | {
content: Array<{
content: Array<{
text: string;
type: string;
}>;
type: string;
}>;
type: string;
version: number;
} | undefined): string;
//# sourceMappingURL=jira.d.ts.map