ContainerProps.ts 387 B

123456789101112
  1. import { NavStore } from './../stores/NavStore/NavStore';
  2. import { PermissionsStore } from './../stores/PermissionsStore/PermissionsStore';
  3. import { ViewStore } from './../stores/ViewStore/ViewStore';
  4. interface ContainerProps {
  5. nav: typeof NavStore.Type;
  6. permissions: typeof PermissionsStore.Type;
  7. view: typeof ViewStore.Type;
  8. backendSrv: any;
  9. }
  10. export default ContainerProps;