bookr-cli
Version:
A terminal-based CLI tool to book time in Jira using the Tempo plugin by parsing your current Git branch name
24 lines • 619 B
TypeScript
interface UpdateInfo {
current: string;
latest: string;
hasUpdate: boolean;
isOutdated: boolean;
}
/**
* Check for available updates
*/
export declare function checkForUpdates(): Promise<UpdateInfo>;
/**
* Get update notification message
*/
export declare function getUpdateMessage(updateInfo: UpdateInfo): string;
/**
* Display update notification if available
*/
export declare function showUpdateNotification(): Promise<void>;
/**
* Force check for updates (ignores cache)
*/
export declare function forceCheckForUpdates(): Promise<UpdateInfo>;
export {};
//# sourceMappingURL=update.d.ts.map