source dump of claude code
at main 18 lines 456 B view raw
1/** 2 * Native Installer - Public API 3 * 4 * This is the barrel file that exports only the functions actually used by external modules. 5 * External modules should only import from this file. 6 */ 7 8// Re-export only the functions that are actually used 9export { 10 checkInstall, 11 cleanupNpmInstallations, 12 cleanupOldVersions, 13 cleanupShellAliases, 14 installLatest, 15 lockCurrentVersion, 16 removeInstalledSymlink, 17 type SetupMessage, 18} from './installer.js'