water_xcx/miniprogram_npm/tdesign-miniprogram/swipe-cell/swipe-cell.d.ts

24 lines
597 B
TypeScript
Raw Permalink Normal View History

2025-04-15 15:44:51 +08:00
import { SuperComponent } from '../common/src/index';
export default class SwiperCell extends SuperComponent {
behaviors: string[];
externalClasses: string[];
options: {
multipleSlots: boolean;
};
properties: import("./type").TdSwipeCellProps;
data: {
wrapperStyle: string;
closed: boolean;
opened: boolean;
classPrefix: string;
};
attached(): void;
setSwipeWidth(): Promise<void>;
detached(): void;
open(): void;
close(): void;
closeOther(): void;
onTap(): void;
onActionTap(event: any): void;
}