core.ts 524 B

1234567891011121314151617181920
  1. import { colors, JsonExplorer } from '@grafana/ui/';
  2. import appEvents from './app_events';
  3. import { profiler } from './profiler';
  4. import { contextSrv } from './services/context_srv';
  5. import { KeybindingSrv } from './services/keybindingSrv';
  6. import TimeSeries, { updateLegendValues } from './time_series2';
  7. import { assignModelProperties } from './utils/model_utils';
  8. export {
  9. profiler,
  10. appEvents,
  11. colors,
  12. assignModelProperties,
  13. contextSrv,
  14. KeybindingSrv,
  15. JsonExplorer,
  16. TimeSeries,
  17. updateLegendValues,
  18. };