mirror of https://github.com/grafana/grafana.git
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
/**
|
|
* A library containing services, configurations etc. used to interact with the Grafana engine.
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
export * from './services';
|
|
export * from './config';
|
|
export * from './types';
|
|
export { loadPluginCss, SystemJS } from './utils/plugin';
|
|
export { reportMetaAnalytics } from './utils/analytics';
|
|
export { DataSourceWithBackend } from './utils/DataSourceWithBackend';
|