合伙人运营小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

swipe-cell.d.ts 672B

12345678910111213141516171819202122232425262728
  1. import { SuperComponent } from '../common/src/index';
  2. export default class SwiperCell extends SuperComponent {
  3. externalClasses: string[];
  4. options: {
  5. multipleSlots: boolean;
  6. };
  7. properties: import("./type").TdSwipeCellProps;
  8. data: {
  9. prefix: string;
  10. wrapperStyle: string;
  11. closed: boolean;
  12. classPrefix: string;
  13. };
  14. observers: {
  15. 'left, right'(): void;
  16. };
  17. lifetimes: {
  18. attached(): void;
  19. ready(): void;
  20. detached(): void;
  21. };
  22. setSwipeWidth(): void;
  23. open(): void;
  24. close(): void;
  25. closeOther(): void;
  26. onTap(): void;
  27. onActionTap(event: any): void;
  28. }