UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

24 lines (23 loc) 573 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ export declare enum PackageManager { NPM = "npm", YARN = "yarn", PNPM = "pnpm", PNPX = "pnpx", BUN = "bun", BUNX = "bunx", HOMEBREW = "homebrew", NPX = "npx", UNKNOWN = "unknown" } export interface InstallationInfo { packageManager: PackageManager; isGlobal: boolean; updateCommand?: string; updateMessage?: string; } export declare function getInstallationInfo(projectRoot: string, isAutoUpdateDisabled: boolean): InstallationInfo;