MCPcopy
hub / github.com/codeaashu/claude-code / InstallProps

Interface InstallProps

src/commands/install.tsx:14–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12import { checkInstall, cleanupNpmInstallations, cleanupShellAliases, installLatest } from '../utils/nativeInstaller/index.js';
13import { getInitialSettings, updateSettingsForSource } from '../utils/settings/settings.js';
14interface InstallProps {
15 onDone: (result: string, options?: {
16 display?: CommandResultDisplay;
17 }) => void;
18 force?: boolean;
19 target?: string; // 'latest', 'stable', or version like '1.0.34'
20}
21type InstallState = {
22 type: 'checking';
23} | {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected