Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js.flow 621B

1234567891011121314151617181920212223242526
  1. // @flow
  2. // Public components
  3. import Popper, { placements } from './Popper';
  4. import Manager from './Manager';
  5. import Reference from './Reference';
  6. export { Popper, placements, Manager, Reference };
  7. // Public types
  8. import type { Placement } from 'popper.js';
  9. import type { ManagerProps } from './Manager';
  10. import type { ReferenceProps, ReferenceChildrenProps } from './Reference';
  11. import type {
  12. PopperChildrenProps,
  13. PopperArrowProps,
  14. PopperProps,
  15. } from './Popper';
  16. export type {
  17. Placement,
  18. ManagerProps,
  19. ReferenceProps,
  20. ReferenceChildrenProps,
  21. PopperChildrenProps,
  22. PopperArrowProps,
  23. PopperProps,
  24. };