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 02:34:14 -05:00
export interface PanelContainer {
getPanelLoader(): PanelLoader;
getDashboard(): DashboardModel;
}