/** * @angular-modernizer/plugin-angular - Sequential Await Transform Rule * * Thin rule wrapper. All logic in SequentialAwaitTransformOrchestrator. */ import type { TransformRule, TransformContext, TransformResult } from '@angular-modernizer/plugin-system'; import type { PublicApi } from '@angular-modernizer/api'; export declare class SequentialAwaitTransformRule implements TransformRule { readonly id = "angular:sequential-await-to-forkjoin"; readonly name = "Sequential Await to forkJoin"; readonly description = "Converts sequential independent await calls to parallel forkJoin() execution"; readonly category = "refactoring"; readonly tags: string[]; private readonly orchestrator; transform(context: TransformContext): Promise; } //# sourceMappingURL=sequential-await-transform.rule.d.ts.map