/** * Sequence multiple flushes when production code awaits one response before * subscribing to the next. Each step calls `expectOne` (or a custom claimer), * flushes via the provided body, and yields to the microtask queue so the * next expectation can register. * * Mirrors web's `flushSequential` helper. */ import type { HttpController, HttpMatcher } from './http-controller.js'; export type SequentialStep = [matcher: HttpMatcher, body: unknown]; export declare function flushSequential(controller: HttpController, steps: SequentialStep[]): Promise; //# sourceMappingURL=flush-sequential.d.ts.map