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.

24 lines
581 B

import { SuperComponent } from '../common/src/index';
export default class SwiperCell extends SuperComponent {
externalClasses: string[];
options: {
multipleSlots: boolean;
};
properties: import("./type").TdSwipeCellProps;
data: {
prefix: string;
wrapperStyle: string;
closed: boolean;
classPrefix: string;
};
attached(): void;
ready(): void;
setSwipeWidth(): void;
detached(): void;
open(): void;
close(): void;
closeOther(): void;
onTap(): void;
onActionTap(event: any): void;
}