codevault
Version:
AI-powered semantic code search via Model Context Protocol
15 lines • 602 B
TypeScript
import type { CodevaultConfig } from './types.js';
/**
* Apply configuration to process.env for backward compatibility
* This allows existing code to work without changes
*
* @readonly Only reads config, modifies process.env (ephemeral)
* @param basePath Project path for loading config
*/
export declare function applyConfigToEnv(basePath?: string): void;
/**
* Get effective configuration (for display purposes)
* Shows what config is actually being used after merging
*/
export declare function getEffectiveConfig(basePath?: string): CodevaultConfig;
//# sourceMappingURL=apply-env.d.ts.map