swipe-cell.d.ts 597 B

1234567891011121314151617181920212223
  1. import { SuperComponent } from '../common/src/index';
  2. export default class SwiperCell extends SuperComponent {
  3. behaviors: string[];
  4. externalClasses: string[];
  5. options: {
  6. multipleSlots: boolean;
  7. };
  8. properties: import("./type").TdSwipeCellProps;
  9. data: {
  10. wrapperStyle: string;
  11. closed: boolean;
  12. opened: boolean;
  13. classPrefix: string;
  14. };
  15. attached(): void;
  16. setSwipeWidth(): Promise<void>;
  17. detached(): void;
  18. open(): void;
  19. close(): void;
  20. closeOther(): void;
  21. onTap(): void;
  22. onActionTap(event: any): void;
  23. }