mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
///<reference path="../../../headers/common.d.ts" />
|
|
|
|
import {GrafanaStreamDS} from './datasource';
|
|
import {QueryCtrl} from 'app/plugins/sdk';
|
|
|
|
class GrafanaQueryCtrl extends QueryCtrl {
|
|
static templateUrl = 'partials/query.editor.html';
|
|
}
|
|
|
|
export {
|
|
GrafanaStreamDS as Datasource,
|
|
GrafanaQueryCtrl as QueryCtrl,
|
|
};
|
|
|