forked from sirkjohannsen/grafana-datasource-datadog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.js
51 lines (37 loc) · 1.63 KB
/
module.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
'use strict';
System.register(['./datasource', './query_ctrl'], function (_export, _context) {
"use strict";
var DataDogDatasource, DataDogQueryCtrl, DataDogConfigCtrl, DataDogQueryOptionsCtrl, DataDogAnnotationsQueryCtrl;
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
return {
setters: [function (_datasource) {
DataDogDatasource = _datasource.DataDogDatasource;
}, function (_query_ctrl) {
DataDogQueryCtrl = _query_ctrl.DataDogQueryCtrl;
}],
execute: function () {
_export('ConfigCtrl', DataDogConfigCtrl = function DataDogConfigCtrl() {
_classCallCheck(this, DataDogConfigCtrl);
});
DataDogConfigCtrl.templateUrl = "partials/config.html";
_export('QueryOptionsCtrl', DataDogQueryOptionsCtrl = function DataDogQueryOptionsCtrl() {
_classCallCheck(this, DataDogQueryOptionsCtrl);
});
DataDogQueryOptionsCtrl.templateUrl = "partials/query.options.html";
_export('AnnotationsQueryCtrl', DataDogAnnotationsQueryCtrl = function DataDogAnnotationsQueryCtrl() {
_classCallCheck(this, DataDogAnnotationsQueryCtrl);
});
DataDogAnnotationsQueryCtrl.templateUrl = 'partials/annotations.editor.html';
_export('Datasource', DataDogDatasource);
_export('QueryCtrl', DataDogQueryCtrl);
_export('ConfigCtrl', DataDogConfigCtrl);
_export('QueryOptionsCtrl', DataDogQueryOptionsCtrl);
_export('AnnotationsQueryCtrl', DataDogAnnotationsQueryCtrl);
}
};
});
//# sourceMappingURL=module.js.map