arela
Version:
AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.
16 lines • 512 B
TypeScript
/**
* Check if a newer version of arela is available
*/
export declare function checkForUpdates(currentVersion: string, silent?: boolean): Promise<{
hasUpdate: boolean;
latestVersion?: string;
}>;
/**
* Check for updates in background (non-blocking)
*/
export declare function checkForUpdatesAsync(currentVersion: string): void;
/**
* Force update check and show result
*/
export declare function forceUpdateCheck(currentVersion: string): Promise<void>;
//# sourceMappingURL=update-checker.d.ts.map