IContainerProps.ts 840 B

1234567891011121314151617181920
  1. import { SearchStore } from './../stores/SearchStore/SearchStore';
  2. import { ServerStatsStore } from './../stores/ServerStatsStore/ServerStatsStore';
  3. import { NavStore } from './../stores/NavStore/NavStore';
  4. import { PermissionsStore } from './../stores/PermissionsStore/PermissionsStore';
  5. import { AlertListStore } from './../stores/AlertListStore/AlertListStore';
  6. import { ViewStore } from './../stores/ViewStore/ViewStore';
  7. import { FolderStore } from './../stores/FolderStore/FolderStore';
  8. interface IContainerProps {
  9. search: typeof SearchStore.Type;
  10. serverStats: typeof ServerStatsStore.Type;
  11. nav: typeof NavStore.Type;
  12. alertList: typeof AlertListStore.Type;
  13. permissions: typeof PermissionsStore.Type;
  14. view: typeof ViewStore.Type;
  15. folder: typeof FolderStore.Type;
  16. backendSrv: any;
  17. }
  18. export default IContainerProps;