Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-cropper/props.ts
2025-08-03 15:23:44 +08:00

20 lines
418 B
TypeScript

import type { PassThroughProps } from "../../types";
export type ClCropperPassThrough = {
className?: string;
image?: PassThroughProps;
op?: PassThroughProps;
opItem?: PassThroughProps;
mask?: PassThroughProps;
cropBox?: PassThroughProps;
};
export type ClCropperProps = {
className?: string;
pt?: ClCropperPassThrough;
cropWidth?: number;
cropHeight?: number;
maxScale?: number;
resizable?: boolean;
};