UNPKG

adpa-enterprise-framework-automation

Version:

Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe

34 lines 820 B
/** * Migration Helper Script * Assists with gradual migration of imports and function calls */ interface MigrationStats { total: number; migrated: number; remaining: number; files: { needsMigration: string[]; alreadyMigrated: string[]; }; } declare class MigrationHelper { /** * Analyze current migration status */ analyzeMigrationStatus(rootDir: string): Promise<MigrationStats>; /** * Check if file has old import style */ private hasOldImport; /** * Check if file has new import style */ private hasNewImport; /** * Generate migration report */ generateReport(stats: MigrationStats): string; } export declare const migrationHelper: MigrationHelper; export {}; //# sourceMappingURL=migrationHelper.d.ts.map