mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
parent
c72fae4ddf
commit
99403332b2
1 changed files with 7 additions and 1 deletions
|
@ -7,7 +7,13 @@
|
|||
import { Filter } from '../../types';
|
||||
// @ts-ignore Untyped Local
|
||||
import { buildBoolArray } from './build_bool_array';
|
||||
import { TimeRange, esFilters } from '../../../../../../src/plugins/data/server';
|
||||
|
||||
// TODO: We should be importing from `data/server` below instead of `data/common`, but
|
||||
// need to keep `data/common` since the contents of this file are currently imported
|
||||
// by the browser. This file should probably be refactored so that the pieces required
|
||||
// on the client live in a `public` directory instead. See kibana/issues/52343
|
||||
// eslint-disable-next-line @kbn/eslint/no-restricted-paths
|
||||
import { TimeRange, esFilters } from '../../../../../../src/plugins/data/common';
|
||||
|
||||
export interface EmbeddableFilterInput {
|
||||
filters: esFilters.Filter[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue