diff --git a/src/legacy/core_plugins/kibana/public/management/sections/index_patterns/edit_index_pattern/indexed_fields_table/types.ts b/src/legacy/core_plugins/kibana/public/management/sections/index_patterns/edit_index_pattern/indexed_fields_table/types.ts index b4c11bb990a3b..f27f4608bf5d5 100644 --- a/src/legacy/core_plugins/kibana/public/management/sections/index_patterns/edit_index_pattern/indexed_fields_table/types.ts +++ b/src/legacy/core_plugins/kibana/public/management/sections/index_patterns/edit_index_pattern/indexed_fields_table/types.ts @@ -17,9 +17,9 @@ * under the License. */ -import { IndexPatternField } from '../../../../../../../../../plugins/data/public'; +import { IFieldType } from '../../../../../../../../../plugins/data/public'; -export interface IndexedFieldItem extends IndexPatternField { +export interface IndexedFieldItem extends IFieldType { info: string[]; excluded: boolean; }