project init

This commit is contained in:
limqhz
2022-11-11 21:51:57 +08:00
parent e9e20765f2
commit 82dbb842ba
68 changed files with 2771 additions and 43 deletions

23
components/swipe-cell/swipe-cell.d.ts vendored Normal file
View File

@@ -0,0 +1,23 @@
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;
}