Files
2025-11-13 10:36:23 +08:00

16 lines
325 B
TypeScript

import type { PassThroughProps } from "../../types";
export type ClDraggablePassThrough = {
className?: string;
ghost?: PassThroughProps;
};
export type ClDraggableProps = {
className?: string;
pt?: ClDraggablePassThrough;
modelValue?: UTSJSONObject[];
disabled?: boolean;
columns?: number;
longPress?: boolean;
};