IContainerProps.ts 694 B

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