Skip to content

Commit

Permalink
Remove import between data <-> embeddables
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdover committed Dec 30, 2020
1 parent be317b3 commit 4ebe41d
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,16 @@ import {
} from '../../../public';
import { dataPluginMock } from '../../../public/mocks';
import { setIndexPatterns, setSearchService } from '../../../public/services';
import { RangeSelectContext } from '../../../../embeddable/public';

describe('brushEvent', () => {
const DAY_IN_MS = 24 * 60 * 60 * 1000;
const JAN_01_2014 = 1388559600000;
let baseEvent: RangeSelectContext['data'];
let baseEvent: {
table: any;
column: number;
range: number[];
timeFieldName?: string;
};

const mockField = {
name: 'time',
Expand Down

0 comments on commit 4ebe41d

Please sign in to comment.