16 lines
324 B
TypeScript
16 lines
324 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;
|
|
animation?: number;
|
|
columns?: number;
|
|
};
|