import { FastifyInstance, FastifyReply, FastifyRequest } from 'fastify' import { Server as HttpServer, IncomingMessage, ServerResponse } from 'http' export type Server = FastifyInstance export type Request = FastifyRequest export type Reply = FastifyReply export type DoneFunction = (err?: Error) => void