useWave.d.ts 236 B

1234
  1. import type { ComponentInternalInstance, ComputedRef, Ref } from 'vue';
  2. export default function useWave(instance: ComponentInternalInstance | null, className: Ref<string>, wave?: ComputedRef<{
  3. disabled?: boolean;
  4. }>): VoidFunction;