From 9e6fa77158c83c439bbc0a27e709e4f2169b820c Mon Sep 17 00:00:00 2001 From: Mat Schaffer Date: Mon, 14 Feb 2022 16:57:06 +0900 Subject: [PATCH] Remove unnecessary export --- x-pack/plugins/monitoring/server/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/monitoring/server/config.ts b/x-pack/plugins/monitoring/server/config.ts index 00f99f5daea25e..22f093646d3e56 100644 --- a/x-pack/plugins/monitoring/server/config.ts +++ b/x-pack/plugins/monitoring/server/config.ts @@ -15,7 +15,7 @@ import { MonitoringConfigSchema } from './types'; const hostURISchema = schema.uri({ scheme: ['http', 'https'] }); const elasticsearchConfigSchema = ElasticsearchBaseConfig.elasticsearch.schema; -export type ElasticsearchConfigType = TypeOf; +type ElasticsearchConfigType = TypeOf; export const monitoringElasticsearchConfigSchema = elasticsearchConfigSchema.extends({ logFetchCount: schema.number({ defaultValue: 10 }),