Files

20 lines
418 B
TypeScript
Raw Permalink Normal View History

2025-11-13 10:36:23 +08:00
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;
};