index.d.ts 190 B

123456
  1. import type { Ref } from 'vue';
  2. type ModalInstance = {
  3. handleClose: () => void;
  4. };
  5. export declare const useModal: (instance: ModalInstance, visibleRef: Ref<boolean>) => void;
  6. export {};