mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -06:00
* Angular: Isolate angular modal support from react modal support * remove unrealted change
22 lines
583 B
TypeScript
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,
|
|
};
|