From b1a460affc359e16087e99192ffb7029d359f602 Mon Sep 17 00:00:00 2001 From: Vitali Kuzmich Date: Fri, 6 Oct 2023 15:44:53 +0200 Subject: [PATCH] Fix type resolution of helper.build() function --- helper.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper.d.ts b/helper.d.ts index e15aff65..d2ff2755 100644 --- a/helper.d.ts +++ b/helper.d.ts @@ -1,7 +1,7 @@ import fastify from 'fastify' declare module 'fastify-cli/helper.js' { - type fastifyFunctionReturnType = ReturnType; + type fastifyFunctionReturnType = ReturnType; module helper { export function build(argv: Array, config: Object): fastifyFunctionReturnType;