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.

22 lines
449 B

4 months ago
  1. import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
  2. const tooltipV2RootProps = buildProps({
  3. delayDuration: {
  4. type: Number,
  5. default: 300
  6. },
  7. defaultOpen: Boolean,
  8. open: {
  9. type: Boolean,
  10. default: void 0
  11. },
  12. onOpenChange: {
  13. type: definePropType(Function)
  14. },
  15. "onUpdate:open": {
  16. type: definePropType(Function)
  17. }
  18. });
  19. export { tooltipV2RootProps };
  20. //# sourceMappingURL=root.mjs.map