Skip to content

Commit

Permalink
Remove unnecessary export
Browse files Browse the repository at this point in the history
  • Loading branch information
matschaffer committed Feb 14, 2022
1 parent 4bcee04 commit 9e6fa77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/monitoring/server/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { MonitoringConfigSchema } from './types';
const hostURISchema = schema.uri({ scheme: ['http', 'https'] });

const elasticsearchConfigSchema = ElasticsearchBaseConfig.elasticsearch.schema;
export type ElasticsearchConfigType = TypeOf<typeof elasticsearchConfigSchema>;
type ElasticsearchConfigType = TypeOf<typeof elasticsearchConfigSchema>;

export const monitoringElasticsearchConfigSchema = elasticsearchConfigSchema.extends({
logFetchCount: schema.number({ defaultValue: 10 }),
Expand Down

0 comments on commit 9e6fa77

Please sign in to comment.