29 lines
556 B
TypeScript
29 lines
556 B
TypeScript
/**
|
|
* Global configuration - barrel exports
|
|
*/
|
|
|
|
export {
|
|
invalidateGlobalConfigCache,
|
|
loadGlobalConfig,
|
|
saveGlobalConfig,
|
|
getDisabledBuiltins,
|
|
getLanguage,
|
|
setLanguage,
|
|
setProvider,
|
|
addTrustedDirectory,
|
|
isDirectoryTrusted,
|
|
resolveAnthropicApiKey,
|
|
resolveOpenaiApiKey,
|
|
loadProjectDebugConfig,
|
|
getEffectiveDebugConfig,
|
|
} from './globalConfig.js';
|
|
|
|
export {
|
|
needsLanguageSetup,
|
|
promptLanguageSelection,
|
|
promptProviderSelection,
|
|
initGlobalDirs,
|
|
initProjectDirs,
|
|
type InitGlobalDirsOptions,
|
|
} from './initialization.js';
|