From 7ae7ca235382db57fcac192960b39bc8f7a7e78d Mon Sep 17 00:00:00 2001 From: shahzad31 Date: Thu, 26 Oct 2023 19:53:41 +0200 Subject: [PATCH] fix types --- x-pack/plugins/synthetics/server/routes/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/synthetics/server/routes/types.ts b/x-pack/plugins/synthetics/server/routes/types.ts index 4692e8d51d868d..7224a6a9e7f5af 100644 --- a/x-pack/plugins/synthetics/server/routes/types.ts +++ b/x-pack/plugins/synthetics/server/routes/types.ts @@ -59,7 +59,7 @@ export type UMKibanaRoute = UMRouteDefinition< export type SyntheticsRestApiRouteFactory< ClientContract = any, - Params = Record, + Params = any, Query = Record, Body = any > = () => SyntheticsRoute;