InterfaceAddEnum.ts 381 B

123456789101112131415161718
  1. //公共结构体和枚举
  2. export enum ScrollViewEventMap{
  3. "scroll-to-top"= 0,
  4. "scroll-to-bottom"= 1,
  5. "scroll-to-left"= 2,
  6. "scroll-to-right"= 3,
  7. "scrolling"= 4,
  8. "bounce-bottom"= 6,
  9. "bounce-left"= 7,
  10. "bounce-right"= 8,
  11. "bounce-top"= 5,
  12. "scroll-ended"= 9,
  13. "touch-up"= 10,
  14. "scroll-ended-with-threshold"= 11,
  15. "scroll-began"= 12,
  16. }