2017-12-19 09:06:54 -06:00
|
|
|
import { DashboardModel } from "../dashboard_model";
|
|
|
|
import { PanelLoader } from "./PanelLoader";
|
2017-10-10 02:34:14 -05:00
|
|
|
|
|
|
|
export interface PanelContainer {
|
|
|
|
getPanelLoader(): PanelLoader;
|
|
|
|
getDashboard(): DashboardModel;
|
|
|
|
}
|