buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
23 lines (22 loc) • 578 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export declare const FETCH_TIMEOUT_MS = 5000;
export interface GitUpdateObject {
message: string;
update: {
current: string;
latest: string;
type: string;
};
}
/**
* Check for updates by comparing current version with latest GitHub release
*/
export declare function checkForGitUpdates(): Promise<GitUpdateObject | null>;
/**
* Get update instructions based on how the CLI was installed
*/
export declare function getGitUpdateInstructions(): string;