bookr-cli
Version:
A terminal-based CLI tool to book time in Jira using the Tempo plugin by parsing your current Git branch name
13 lines • 361 B
TypeScript
import type React from 'react';
interface AppProps {
input: string[];
flags: {
ticket?: string | undefined;
time?: string | undefined;
date?: string | undefined;
description?: string | undefined;
} & Record<string, unknown>;
}
export declare const App: React.FC<AppProps>;
export {};
//# sourceMappingURL=App.d.ts.map