File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
x-pack/plugins/cross_cluster_replication/server Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 44 * you may not use this file except in compliance with the Elastic License.
55 */
66
7- import { PluginInitializerContext , PluginConfigDescriptor } from 'kibana /server' ;
7+ import { PluginInitializerContext , PluginConfigDescriptor } from 'src/core /server' ;
88import { CrossClusterReplicationServerPlugin } from './plugin' ;
99import { configSchema , CrossClusterReplicationConfig } from './config' ;
1010
11- export const plugin = ( ctx : PluginInitializerContext ) =>
12- new CrossClusterReplicationServerPlugin ( ctx ) ;
11+ export const plugin = ( pluginInitializerContext : PluginInitializerContext ) =>
12+ new CrossClusterReplicationServerPlugin ( pluginInitializerContext ) ;
1313
1414export const config : PluginConfigDescriptor < CrossClusterReplicationConfig > = {
1515 schema : configSchema ,
Original file line number Diff line number Diff line change 44 * you may not use this file except in compliance with the Elastic License.
55 */
66
7- declare module 'kibana /server' {
7+ declare module 'src/core /server' {
88 interface RequestHandlerContext {
99 crossClusterReplication ?: CrossClusterReplicationContext ;
1010 }
Original file line number Diff line number Diff line change 99 KibanaResponseFactory ,
1010 RequestHandler ,
1111 RequestHandlerContext ,
12- } from 'kibana /server' ;
12+ } from 'src/core /server' ;
1313
1414import { LicensingPluginSetup } from '../../../licensing/server' ;
1515import { LicenseType } from '../../../licensing/common/types' ;
You can’t perform that action at this time.
0 commit comments