props.ts 460 B

123456789101112131415161718192021
  1. export type ClSignPassThrough = {
  2. className?: string;
  3. };
  4. export type ClSignProps = {
  5. className?: string;
  6. pt?: ClSignPassThrough;
  7. width?: number;
  8. height?: number;
  9. strokeColor?: string;
  10. strokeWidth?: number;
  11. backgroundColor?: string;
  12. enableBrush?: boolean;
  13. minStrokeWidth?: number;
  14. maxStrokeWidth?: number;
  15. velocitySensitivity?: number;
  16. autoRotate?: boolean;
  17. landscapeWidthRatio?: number;
  18. landscapeHeightRatio?: number;
  19. fullscreen?: boolean;
  20. };