Skip to content

Commit

Permalink
arghhh
Browse files Browse the repository at this point in the history
  • Loading branch information
restrry committed Nov 18, 2021
1 parent 8eee01e commit b337ad0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*/

import './ensure_apm_started';
import type { PluginInitializerContext } from 'kibana/server';
import { FixturePlugin } from './plugin';

export const plugin = () => new FixturePlugin();
export const plugin = (ctx: PluginInitializerContext) => new FixturePlugin(ctx);
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
import apmAgent from 'elastic-apm-node';

import { Plugin, CoreSetup, PluginInitializerContext } from 'kibana/server';
import type { Plugin, CoreSetup, PluginInitializerContext } from 'kibana/server';
import { PluginSetupContract as AlertingPluginSetup } from '../../../../../../plugins/alerting/server/plugin';
import { EncryptedSavedObjectsPluginStart } from '../../../../../../plugins/encrypted_saved_objects/server';
import { PluginSetupContract as FeaturesPluginSetup } from '../../../../../../plugins/features/server';
Expand Down

0 comments on commit b337ad0

Please sign in to comment.