Files
prop-data-guard/frontend/node_modules/element-plus/es/hooks/use-focus/index.d.ts
T
2026-04-22 17:07:33 +08:00

10 lines
209 B
TypeScript

import { Ref } from "vue";
//#region ../../packages/hooks/use-focus/index.d.ts
declare const useFocus: (el: Ref<{
focus: () => void;
} | null>) => {
focus: () => void;
};
//#endregion
export { useFocus };