index.d.ts 260 B

12345678910
  1. import * as React from 'react';
  2. export interface WaterWaveProps {
  3. title: React.ReactNode;
  4. color?: string;
  5. height: number;
  6. percent: number;
  7. style?: React.CSSProperties;
  8. }
  9. export default class WaterWave extends React.Component<WaterWaveProps, any> {}