mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* noImplicitAny playlist approx 200 * Add AngularPanelMenuItem interface * Roughly 100 noImplicitAny
11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import { NavModelSrv } from 'app/core/core';
|
|
|
|
export class DashboardListCtrl {
|
|
navModel: any;
|
|
|
|
/** @ngInject */
|
|
constructor(navModelSrv: NavModelSrv) {
|
|
this.navModel = navModelSrv.getNav('dashboards', 'manage-dashboards', 0);
|
|
}
|
|
}
|