props.ts 325 B

123456789101112131415
  1. import type { PassThroughProps } from "../../types";
  2. export type ClDraggablePassThrough = {
  3. className?: string;
  4. ghost?: PassThroughProps;
  5. };
  6. export type ClDraggableProps = {
  7. className?: string;
  8. pt?: ClDraggablePassThrough;
  9. modelValue?: UTSJSONObject[];
  10. disabled?: boolean;
  11. columns?: number;
  12. longPress?: boolean;
  13. };