module.ts 589 B

12345678910111213141516171819
  1. import Datasource from './datasource';
  2. import LokiCheatSheet from './components/LokiCheatSheet';
  3. import LokiQueryField from './components/LokiQueryField';
  4. import LokiQueryEditor from './components/LokiQueryEditor';
  5. import { LokiAnnotationsQueryCtrl } from './LokiAnnotationsQueryCtrl';
  6. export class LokiConfigCtrl {
  7. static templateUrl = 'partials/config.html';
  8. }
  9. export {
  10. Datasource,
  11. LokiQueryEditor as QueryEditor,
  12. LokiConfigCtrl as ConfigCtrl,
  13. LokiQueryField as ExploreQueryField,
  14. LokiCheatSheet as ExploreStartPage,
  15. LokiAnnotationsQueryCtrl as AnnotationsQueryCtrl,
  16. };