Files
grafana/public/app/features/dashboard/dashgrid/PanelContainer.ts

8 lines
202 B
TypeScript
Raw Normal View History

import { DashboardModel } from "../dashboard_model";
import { PanelLoader } from "./PanelLoader";
2017-10-10 09:34:14 +02:00
export interface PanelContainer {
getPanelLoader(): PanelLoader;
getDashboard(): DashboardModel;
}