Skip to content

Commit

Permalink
fix a gosh darn silly type
Browse files Browse the repository at this point in the history
  • Loading branch information
stephmilovic committed Mar 16, 2021
1 parent 82cd096 commit 1cb3917
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions x-pack/plugins/cases/public/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ export function plugin(initializerContext: PluginInitializerContext) {

export { CasesUiPlugin };
export * from './plugin';
export * from './types';
4 changes: 2 additions & 2 deletions x-pack/plugins/security_solution/public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

import { PluginInitializerContext } from '../../../../src/core/public';
import { Plugin } from './plugin';
import { PluginSetup, PluginStart } from './types';
import { PluginSetup } from './types';

export const plugin = (context: PluginInitializerContext): Plugin => new Plugin(context);

export { Plugin, PluginSetup, PluginStart };
export { Plugin, PluginSetup };
3 changes: 3 additions & 0 deletions x-pack/plugins/security_solution/public/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
TriggersAndActionsUIPublicPluginSetup as TriggersActionsSetup,
TriggersAndActionsUIPublicPluginStart as TriggersActionsStart,
} from '../../triggers_actions_ui/public';
import { CasesUiStart } from '../../cases/public';
import { SecurityPluginSetup } from '../../security/public';
import { ResolverPluginSetup } from './resolver/types';
import { Inspect } from '../common/search_strategy';
Expand Down Expand Up @@ -69,6 +70,8 @@ export type StartServices = CoreStart &
export interface PluginSetup {
resolver: () => Promise<ResolverPluginSetup>;
}
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface PluginStart {}

export interface AppObservableLibs extends AppFrontendLibs {
kibana: CoreStart;
Expand Down

0 comments on commit 1cb3917

Please sign in to comment.