Skip to content

Commit

Permalink
use IndexPattern instead of IIndexPattern (#107176)
Browse files Browse the repository at this point in the history
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
mattkime and kibanamachine authored Aug 2, 2021
1 parent df421f8 commit df9330a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x-pack/plugins/maps/public/embeddable/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* 2.0.
*/

import { IIndexPattern } from '../../../../../src/plugins/data/common/index_patterns';
import type { IndexPattern } from '../../../../../src/plugins/data/common/index_patterns';
import {
EmbeddableInput,
EmbeddableOutput,
Expand Down Expand Up @@ -41,5 +41,5 @@ export type MapByReferenceInput = SavedObjectEmbeddableInput & {
export type MapEmbeddableInput = MapByValueInput | MapByReferenceInput;

export type MapEmbeddableOutput = EmbeddableOutput & {
indexPatterns: IIndexPattern[];
indexPatterns: IndexPattern[];
};

0 comments on commit df9330a

Please sign in to comment.