Files
dsProject/dsBase/WebRoot/html/cdn/es/hooks/use-restore-active/index.d.ts

7 lines
287 B
TypeScript
Raw Normal View History

2025-08-14 15:45:08 +08:00
import type { Ref } from 'vue';
/**
* This method provides dialogable components the ability to restore previously activated element before
* the dialog gets opened
*/
export declare const useRestoreActive: (toggle: Ref<boolean>, initialFocus?: Ref<HTMLElement> | undefined) => void;