From 9717e423d36922de5cb931eacd7b566b3147dce7 Mon Sep 17 00:00:00 2001 From: klacabane Date: Thu, 22 Jun 2023 19:37:03 +0200 Subject: [PATCH] fix types --- .../plugins/asset_manager/server/lib/accessors/hosts/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/asset_manager/server/lib/accessors/hosts/index.ts b/x-pack/plugins/asset_manager/server/lib/accessors/hosts/index.ts index 6198824ba8a02..9becb15ebdc0a 100644 --- a/x-pack/plugins/asset_manager/server/lib/accessors/hosts/index.ts +++ b/x-pack/plugins/asset_manager/server/lib/accessors/hosts/index.ts @@ -8,8 +8,8 @@ import { AccessorOptions, OptionsWithInjectedValues } from '..'; export interface GetHostsOptions extends AccessorOptions { - from: number; - to: number; + from: string; + to: string; } export type GetHostsOptionsInjected = OptionsWithInjectedValues;