mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Search] Fix type errors (#167138)
## Summary Fix type issues in the Search plugin. Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
13e5c076d5
commit
e4105331d3
3 changed files with 3 additions and 7 deletions
|
@ -8,7 +8,7 @@
|
|||
import { schema, TypeOf } from '@kbn/config-schema';
|
||||
import { PluginInitializerContext, PluginConfigDescriptor } from '@kbn/core/server';
|
||||
|
||||
import { EnterpriseSearchPlugin, EnterpriseSearchPluginStart as PluginStart } from './plugin';
|
||||
import { EnterpriseSearchPlugin } from './plugin';
|
||||
|
||||
export const plugin = (initializerContext: PluginInitializerContext) => {
|
||||
return new EnterpriseSearchPlugin(initializerContext);
|
||||
|
@ -54,5 +54,3 @@ export const config: PluginConfigDescriptor<ConfigType> = {
|
|||
};
|
||||
|
||||
export const CRAWLERS_INDEX = '.ent-search-actastic-crawler2_configurations_v2';
|
||||
|
||||
export type EnterpriseSearchPluginStart = PluginStart;
|
||||
|
|
|
@ -7,9 +7,7 @@
|
|||
|
||||
import { IScopedClusterClient } from '@kbn/core/server';
|
||||
|
||||
import { Connector } from '@kbn/search-connectors';
|
||||
|
||||
import { CONNECTORS_INDEX } from '../..';
|
||||
import { CONNECTORS_INDEX, Connector } from '@kbn/search-connectors';
|
||||
|
||||
const CUSTOM_SCHEDULING = 'custom_scheduling';
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
import { IScopedClusterClient } from '@kbn/core/server';
|
||||
|
||||
import { CONNECTORS_INDEX } from '../..';
|
||||
import { CONNECTORS_INDEX } from '@kbn/search-connectors';
|
||||
|
||||
import {
|
||||
CrawlerCustomScheduleMappingServer,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue