Files
jindengchen-ai-report/cool-unix/uni_modules/cool-ui/components/cl-sign/props.ts
2025-11-13 10:36:23 +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;
};