From 91d926f180e5ab9d9c360c0ac6a49c8b3a35d759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 28 Jan 2019 15:26:15 +0100 Subject: [PATCH] single import for types from @grafana/ui --- public/app/features/explore/state/actions.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/public/app/features/explore/state/actions.ts b/public/app/features/explore/state/actions.ts index 35e81bb8e5b..0b17bed2d1f 100644 --- a/public/app/features/explore/state/actions.ts +++ b/public/app/features/explore/state/actions.ts @@ -4,6 +4,8 @@ import { ThunkAction } from 'redux-thunk'; // Services & Utils import store from 'app/core/store'; +import { getDatasourceSrv } from 'app/features/plugins/datasource_srv'; +import { Emitter } from 'app/core/core'; import { LAST_USED_DATASOURCE_KEY, clearQueryKeys, @@ -21,8 +23,14 @@ import { updateLocation } from 'app/core/actions'; // Types import { StoreState } from 'app/types'; -import { DataQuery, DataSourceSelectItem, QueryHint } from '@grafana/ui/src/types'; -import { getDatasourceSrv } from 'app/features/plugins/datasource_srv'; +import { + RawTimeRange, + TimeRange, + DataSourceApi, + DataQuery, + DataSourceSelectItem, + QueryHint, +} from '@grafana/ui/src/types'; import { ExploreId, ExploreUrlState, @@ -32,8 +40,6 @@ import { QueryTransaction, } from 'app/types/explore'; -import { Emitter } from 'app/core/core'; -import { RawTimeRange, TimeRange, DataSourceApi } from '@grafana/ui'; import { Action as ThunkableAction, ActionTypes,