import createError, { FastifyError, FastifyErrorConstructor } from './' import { expectType } from 'tsd' const CustomError = createError('ERROR_CODE', 'message') expectType(CustomError) const err = new CustomError() expectType(err) expectType(err.code) expectType(err.message) expectType(err.statusCode!)