route-claudecode
Version:
Advanced routing and transformation system for Claude Code outputs to multiple AI providers
24 lines • 778 B
TypeScript
/**
* Configuration Migration Utility
* Migrates configurations and logs from legacy to new path
* Project owner: Jason Zhang
*/
export interface MigrationResult {
success: boolean;
filesTransferred: number;
errors: string[];
}
/**
* Migrate all configurations and logs from legacy to new path
*/
export declare function migrateConfiguration(): Promise<MigrationResult>;
/**
* Remove legacy configuration directory after successful migration
* WARNING: This permanently deletes the legacy directory
*/
export declare function removeLegacyConfiguration(): Promise<boolean>;
/**
* Create a backup of legacy configuration before migration
*/
export declare function backupLegacyConfiguration(): Promise<string | null>;
//# sourceMappingURL=migration.d.ts.map