mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
21 lines
840 B
TypeScript
21 lines
840 B
TypeScript
import { SearchStore } from './../stores/SearchStore/SearchStore';
|
|
import { ServerStatsStore } from './../stores/ServerStatsStore/ServerStatsStore';
|
|
import { NavStore } from './../stores/NavStore/NavStore';
|
|
import { PermissionsStore } from './../stores/PermissionsStore/PermissionsStore';
|
|
import { AlertListStore } from './../stores/AlertListStore/AlertListStore';
|
|
import { ViewStore } from './../stores/ViewStore/ViewStore';
|
|
import { FolderStore } from './../stores/FolderStore/FolderStore';
|
|
|
|
interface IContainerProps {
|
|
search: typeof SearchStore.Type;
|
|
serverStats: typeof ServerStatsStore.Type;
|
|
nav: typeof NavStore.Type;
|
|
alertList: typeof AlertListStore.Type;
|
|
permissions: typeof PermissionsStore.Type;
|
|
view: typeof ViewStore.Type;
|
|
folder: typeof FolderStore.Type;
|
|
backendSrv: any;
|
|
}
|
|
|
|
export default IContainerProps;
|