UNPKG

@citrineos/base

Version:

The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.

5 lines (4 loc) 193 B
import { FastifyError, FastifyReply, FastifyRequest } from 'fastify'; export interface ExceptionHandler { handle(error: FastifyError, request: FastifyRequest, reply: FastifyReply): void; }