mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
import {DashboardModel} from '../dashboard_model';
|
||
import {PanelLoader} from './PanelLoader';
|
||
|
||
export interface PanelContainer {
|
||
getPanelLoader(): PanelLoader;
|
||
getDashboard(): DashboardModel;
|
||
}
|
||
|