Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Mar 18, 2020
1 parent b16eb50 commit 87ddc60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/console/server/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ import { SpecDefinitionsService } from './services';
import { ConfigType } from './config';
import { registerProxyRoute } from './routes/api/console/proxy';
import { registerSpecDefinitionsRoute } from './routes/api/console/spec_definitions';
import { ESConfigForProxy, ConsoleSetup } from './types';
import { ESConfigForProxy, ConsoleSetup, ConsoleStart } from './types';

export class ConsoleServerPlugin implements Plugin<ConsoleSetup> {
export class ConsoleServerPlugin implements Plugin<ConsoleSetup, ConsoleStart> {
log: Logger;

specDefinitionsService = new SpecDefinitionsService();
Expand Down

0 comments on commit 87ddc60

Please sign in to comment.