Skip to content

Commit

Permalink
fix test plugin types
Browse files Browse the repository at this point in the history
  • Loading branch information
pgayvallet committed Jun 23, 2020
1 parent 929eb89 commit b3f62e3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ import { createResult } from '../common/utils';
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface GlobalSearchTestPluginSetup {}
export interface GlobalSearchTestPluginStart {
findAll: (term: string) => Promise<GlobalSearchResult[]>;
findTest: (term: string) => Promise<GlobalSearchResult[]>;
findReal: (term: string) => Promise<GlobalSearchResult[]>;
}

export interface GlobalSearchTestPluginSetupDeps {
Expand Down

0 comments on commit b3f62e3

Please sign in to comment.