module.ts 392 B

1234567891011121314
  1. import {OpenTsDatasource} from './datasource';
  2. import {OpenTsQueryCtrl} from './query_ctrl';
  3. import {OpenTsConfigCtrl} from './config_ctrl';
  4. class AnnotationsQueryCtrl {
  5. static templateUrl = 'partials/annotations.editor.html';
  6. }
  7. export {
  8. OpenTsDatasource as Datasource,
  9. OpenTsQueryCtrl as QueryCtrl,
  10. OpenTsConfigCtrl as ConfigCtrl,
  11. AnnotationsQueryCtrl as AnnotationsQueryCtrl
  12. };