buroventures-harald-code
Version:
Harald Code - AI-powered coding assistant CLI
13 lines (12 loc) • 332 B
TypeScript
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { UpdateInfo } from 'update-notifier';
export declare const FETCH_TIMEOUT_MS = 2000;
export interface UpdateObject {
message: string;
update: UpdateInfo;
}
export declare function checkForUpdates(): Promise<UpdateObject | null>;