Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-draggable/props.ts

16 lines
324 B
TypeScript
Raw Normal View History

2025-07-27 22:27:53 +08:00
import type { PassThroughProps } from "../../types";
export type ClDraggablePassThrough = {
className?: string;
ghost?: PassThroughProps;
};
export type ClDraggableProps = {
className?: string;
pt?: ClDraggablePassThrough;
modelValue?: UTSJSONObject[];
disabled?: boolean;
animation?: number;
columns?: number;
};