mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
17 lines
314 B
TypeScript
17 lines
314 B
TypeScript
///<reference path="../../../headers/common.d.ts" />
|
|
|
|
import {PanelCtrl} from 'app/plugins/sdk';
|
|
|
|
export class UnknownPanelCtrl extends PanelCtrl {
|
|
static templateUrl = 'public/app/plugins/panel/unknown/module.html';
|
|
|
|
/** @ngInject */
|
|
constructor($scope, $injector) {
|
|
super($scope, $injector);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|