New Huajishe Check ChaoXing
This commit is contained in:
21
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/fab/draggable/draggable.d.ts
vendored
Normal file
21
HuajisheCheckChaoXing/miniprogram_npm/tdesign-miniprogram/fab/draggable/draggable.d.ts
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import { SuperComponent } from '../../common/src/index';
|
||||
import type { TdDraggableProps } from './type';
|
||||
export interface DraggableProps extends TdDraggableProps {
|
||||
}
|
||||
export default class Draggable extends SuperComponent {
|
||||
properties: TdDraggableProps;
|
||||
externalClasses: string[];
|
||||
data: {
|
||||
prefix: string;
|
||||
classPrefix: string;
|
||||
};
|
||||
lifetimes: {
|
||||
ready(): void;
|
||||
};
|
||||
methods: {
|
||||
onTouchStart(e: any): void;
|
||||
onTouchMove(e: any): void;
|
||||
onTouchEnd(e: any): Promise<void>;
|
||||
computedRect(): Promise<void>;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user