grafana/public/app/core/core.ts
Torkel Ödegaard 6c8bc749ca
Angular: Isolate angular modal support from react modal support (#41788)
* Angular: Isolate angular modal support from react modal support

* remove unrealted change
2021-11-17 13:12:18 +01:00

22 lines
583 B
TypeScript

import './jquery_extended';
import './services/search_srv';
import { colors, JsonExplorer } from '@grafana/ui/';
import appEvents from './app_events';
import { assignModelProperties } from './utils/model_utils';
import { contextSrv } from './services/context_srv';
import { KeybindingSrv } from './services/keybindingSrv';
import { profiler } from './profiler';
import TimeSeries, { updateLegendValues } from './time_series2';
export {
profiler,
appEvents,
colors,
assignModelProperties,
contextSrv,
KeybindingSrv,
JsonExplorer,
TimeSeries,
updateLegendValues,
};