@tramvai/tokens-server-private 1.89.1 → 1.90.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -44,4 +44,4 @@ export declare const WEB_FASTIFY_APP_PROCESS_ERROR_TOKEN: FASTIFY_APP_ERROR_HAND
|
|
|
44
44
|
*/
|
|
45
45
|
export declare const WEB_FASTIFY_APP_AFTER_ERROR_TOKEN: FASTIFY_APP_ERROR_HANDLER;
|
|
46
46
|
export declare type FASTIFY_APP_INIT_HANDLER = Array<(app: FastifyInstance) => Promise<void> | void>;
|
|
47
|
-
export declare type FASTIFY_APP_ERROR_HANDLER = Array<(error: FastifyError, request: FastifyRequest, reply: FastifyReply) => Promise<string | undefined> | string | undefined>;
|
|
47
|
+
export declare type FASTIFY_APP_ERROR_HANDLER = Array<(error: FastifyError, request: FastifyRequest, reply: FastifyReply) => Promise<string | undefined | void> | string | undefined | void>;
|