props.ts 449 B

123456789101112131415161718192021222324252627282930
  1. // @ts-nocheck
  2. // import {PropType} from 'vue'
  3. export default {
  4. height: {
  5. type: Number,
  6. default: 0
  7. },
  8. defaultAnchor: {
  9. type: Number,
  10. default: 0
  11. },
  12. anchors: {
  13. type: Array,// as PropType<number[]>,
  14. default: () => []
  15. },
  16. animation: {
  17. type: Boolean,
  18. default: true
  19. },
  20. contentDraggable: {
  21. type: Boolean,
  22. default: true
  23. },
  24. safeAreaInsetBottom: {
  25. type: Boolean,
  26. default: true
  27. },
  28. bgColor: String,
  29. barColor: String,
  30. }