index.d.ts 287 B

123456
  1. import type { Ref } from 'vue';
  2. /**
  3. * This method provides dialogable components the ability to restore previously activated element before
  4. * the dialog gets opened
  5. */
  6. export declare const useRestoreActive: (toggle: Ref<boolean>, initialFocus?: Ref<HTMLElement> | undefined) => void;