trifid-core
Version:
Trifid Core
11 lines • 346 B
TypeScript
import type { FastifyError, FastifyReply, FastifyRequest } from 'fastify';
/**
* Error handler.
*
* @param error Error.
* @param request Request.
* @param reply Reply.
*/
declare const handler: (error: FastifyError, request: FastifyRequest, reply: FastifyReply) => Promise<void>;
export default handler;
//# sourceMappingURL=errors.d.ts.map