ContainerProps.ts 594 B

12345678910111213141516
  1. import { SearchStore } from './../stores/SearchStore/SearchStore';
  2. import { NavStore } from './../stores/NavStore/NavStore';
  3. import { PermissionsStore } from './../stores/PermissionsStore/PermissionsStore';
  4. import { ViewStore } from './../stores/ViewStore/ViewStore';
  5. import { FolderStore } from './../stores/FolderStore/FolderStore';
  6. interface ContainerProps {
  7. search: typeof SearchStore.Type;
  8. nav: typeof NavStore.Type;
  9. permissions: typeof PermissionsStore.Type;
  10. view: typeof ViewStore.Type;
  11. folder: typeof FolderStore.Type;
  12. backendSrv: any;
  13. }
  14. export default ContainerProps;