Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-sign/props.ts
2025-07-29 16:16:06 +08:00

19 lines
374 B
TypeScript

export type ClSignPassThrough = {
className?: string;
};
export type ClSignProps = {
className?: string;
pt?: ClSignPassThrough;
width?: number;
height?: number;
strokeColor?: string;
strokeWidth?: number;
backgroundColor?: string;
enableBrush?: boolean;
minStrokeWidth?: number;
maxStrokeWidth?: number;
velocitySensitivity?: number;
autoRotate?: boolean;
};