interface FastifyRequest { url: string; method: string; headers: Record; query: Record; body: any; params: Record; routeOptions?: any; } interface FastifyReply { status(code: number): this; send(payload: any): Promise; header(name: string, value: string | string[]): this; sent: boolean; raw: any; } import { HttpAdapter, HttpRequest, HttpResponse } from '../interfaces/http-adapter.interface'; export declare class FastifyHttpAdapter implements HttpAdapter { adaptRequest(req: FastifyRequest): HttpRequest; adaptResponse(res: FastifyReply): HttpResponse; } export {}; //# sourceMappingURL=fastify-http.adapter.d.ts.map