grafana/public/app/core/core.ts
Torkel Ödegaard 27f66a6df9
Angular: Move coreModule to app/angular and isolate angular usage more (#41433)
* moving coreModule to app/angular and isolating it more

* fixed ts issue
2021-11-09 08:37:16 +01:00

23 lines
615 B
TypeScript

import './jquery_extended';
import './services/search_srv';
import { colors, JsonExplorer } from '@grafana/ui/';
import 'app/core/services/all';
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,
};