zoujiandong 2bd2fd31ac 1.22
2024-01-22 08:55:30 +08:00

25 lines
606 B
TypeScript

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;
opened: boolean;
classPrefix: string;
};
attached(): void;
ready(): void;
setSwipeWidth(): void;
detached(): void;
open(): void;
close(): void;
closeOther(): void;
onTap(): void;
onActionTap(event: any): void;
}