Files
jindengchen-ai-report/cool-unix/uni_modules/cool-ui/components/cl-draggable/props.ts

16 lines
325 B
TypeScript
Raw Normal View History

2025-11-13 10:36:23 +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;
columns?: number;
longPress?: boolean;
};