useWave.d.ts 245 B

1234
  1. import * as React from 'react';
  2. import type { ShowWave, WaveComponent } from './interface';
  3. declare const useWave: (nodeRef: React.RefObject<HTMLElement | null>, className: string, component?: WaveComponent) => ShowWave;
  4. export default useWave;