interface AppConfig { id: string; name: string; type: 'backend' | 'web'; devPort?: number; [key: string]: unknown; } interface Settings { general: { portOffset: number; [key: string]: unknown; }; [key: string]: unknown; } interface OldConfig { apps?: AppConfig[]; settings: Settings; [key: string]: unknown; } interface NewConfig { apps?: AppConfig[]; settings: Settings; [key: string]: unknown; } /** * Migration to assign development ports to apps * * This migration assigns devPort to all existing apps based on their type: * - Backend apps: portOffset + 1 * - Web apps: portOffset + 30 + alphabeticalIndex */ export declare const migration023AssignAppPorts: import("./types.js").SchemaMigration; export {}; //# sourceMappingURL=migration-023-assign-app-ports.d.ts.map