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

18 lines
351 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;
};