constants.d.ts 506 B

1234567891011121314151617181920212223242526
  1. /**
  2. * 水波图默认配置项
  3. */
  4. export declare const DEFAULT_OPTIONS: {
  5. radius: number;
  6. statistic: {
  7. title: false;
  8. content: {
  9. style: {
  10. opacity: number;
  11. fontSize: string;
  12. lineHeight: string;
  13. textAlign: string;
  14. };
  15. };
  16. };
  17. outline: {
  18. border: number;
  19. distance: number;
  20. };
  21. wave: {
  22. count: number;
  23. length: number;
  24. };
  25. shape: string;
  26. };