index.d.ts 139 B

123456
  1. import type { Ref } from 'vue';
  2. export declare const useFocus: (el: Ref<{
  3. focus: () => void;
  4. } | null>) => {
  5. focus: () => void;
  6. };