2018-01-03 13:11:07 -06:00
|
|
|
|
import { SearchStore } from './../stores/SearchStore/SearchStore';
|
|
|
|
|
import { ServerStatsStore } from './../stores/ServerStatsStore/ServerStatsStore';
|
|
|
|
|
import { NavStore } from './../stores/NavStore/NavStore';
|
2018-01-18 08:49:15 -06:00
|
|
|
|
import { PermissionsStore } from './../stores/PermissionsStore/PermissionsStore';
|
2018-01-03 13:11:07 -06:00
|
|
|
|
import { AlertListStore } from './../stores/AlertListStore/AlertListStore';
|
|
|
|
|
import { ViewStore } from './../stores/ViewStore/ViewStore';
|
2018-01-11 08:42:45 -06:00
|
|
|
|
import { FolderStore } from './../stores/FolderStore/FolderStore';
|
2018-01-03 13:11:07 -06:00
|
|
|
|
|
|
|
|
|
interface IContainerProps {
|
|
|
|
|
search: typeof SearchStore.Type;
|
|
|
|
|
serverStats: typeof ServerStatsStore.Type;
|
|
|
|
|
nav: typeof NavStore.Type;
|
|
|
|
|
alertList: typeof AlertListStore.Type;
|
2018-01-18 08:49:15 -06:00
|
|
|
|
permissions: typeof PermissionsStore.Type;
|
2018-01-03 13:11:07 -06:00
|
|
|
|
view: typeof ViewStore.Type;
|
2018-01-11 08:42:45 -06:00
|
|
|
|
folder: typeof FolderStore.Type;
|
2018-01-17 09:11:34 -06:00
|
|
|
|
backendSrv: any;
|
2018-01-03 13:11:07 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default IContainerProps;
|