index.d.ts 209 B

12345678910
  1. import { Ref } from "vue";
  2. //#region ../../packages/hooks/use-focus/index.d.ts
  3. declare const useFocus: (el: Ref<{
  4. focus: () => void;
  5. } | null>) => {
  6. focus: () => void;
  7. };
  8. //#endregion
  9. export { useFocus };