I'm seeing a number of type errors upon updating to 11
This says there shouldn't be any change to how fastify/helmet is registered as a plugin: https://docs.nestjs.com/security/helmet#use-with-fastify
But I'm getting an error 😕
src/main.ts:48:22 - error TS2345: Argument of type 'FastifyHelmet' is not assignable to parameter of type 'FastifyPluginCallback<FastifyHelmetOptions> | FastifyPluginAsync<FastifyHelmetOptions> | Promise<...> | Promise<...>'.
Type 'FastifyHelmet' is not assignable to type 'FastifyPluginCallback<FastifyHelmetOptions>'.
Types of parameters 'instance' and 'instance' are incompatible.
Type 'FastifyInstance<RawServerDefault, IncomingMessage, ServerResponse<IncomingMessage>, FastifyBaseLogger, FastifyTypeProviderDefault>' is missing the following properties from type 'FastifyInstance<RawServerDefault, IncomingMessage, ServerResponse<IncomingMessage>, FastifyBaseLogger, FastifyTypeProviderDefault>': getDefaultRoute, setDefaultRoute, multipartErrors, serializeCookie, and 3 more.
48 await app.register(helmet)
~~~~~~