运维小程序
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.

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. }