swipe-cell.d.ts 581 B

1234567891011121314151617181920212223
  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. attached(): void;
  15. ready(): void;
  16. setSwipeWidth(): void;
  17. detached(): void;
  18. open(): void;
  19. close(): void;
  20. closeOther(): void;
  21. onTap(): void;
  22. onActionTap(event: any): void;
  23. }