UNPKG

buroventures-harald-code-core

Version:

Harald Code Core - Core functionality for AI-powered coding assistant

15 lines (14 loc) 366 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { DetectedIde } from './detect-ide.js'; export interface IdeInstaller { install(): Promise<InstallResult>; } export interface InstallResult { success: boolean; message: string; } export declare function getIdeInstaller(ide: DetectedIde): IdeInstaller | null;