Files
tasq/node_modules/@claude-flow/cli/dist/src/config-adapter.d.ts
T
2026-04-09 19:01:53 +08:00

15 lines
517 B
TypeScript

/**
* Configuration Adapter
* Converts between SystemConfig and V3Config types
*/
import type { SystemConfig } from '@claude-flow/shared';
import type { V3Config } from './types.js';
/**
* Convert SystemConfig to V3Config (CLI-specific format)
*/
export declare function systemConfigToV3Config(systemConfig: SystemConfig): V3Config;
/**
* Convert V3Config to SystemConfig
*/
export declare function v3ConfigToSystemConfig(v3Config: V3Config): Partial<SystemConfig>;
//# sourceMappingURL=config-adapter.d.ts.map