@sentzunhat/zacatl
Version:
A modular, high-performance TypeScript microservice framework for Node.js, featuring layered architecture, dependency injection, and robust validation for building scalable APIs and distributed systems.
9 lines • 442 B
TypeScript
import type { IncomingMessage } from 'http';
import type { FastifySchema, FastifyRequest, RawServerBase } from '../../../../../../third-party/fastify.js';
export type Request<TBody = void, TQuerystring = void, TParams = void, THeaders = void> = FastifyRequest<{
Body: TBody;
Querystring: TQuerystring;
Params: TParams;
Headers: THeaders;
}, RawServerBase, IncomingMessage, FastifySchema>;
//# sourceMappingURL=request.d.ts.map