index.d.ts 251 B

123456789
  1. import { Ref } from "vue";
  2. //#region ../../packages/hooks/use-modal/index.d.ts
  3. type ModalInstance = {
  4. handleClose: () => void;
  5. };
  6. declare const useModal: (instance: ModalInstance, visibleRef: Ref<boolean>) => void;
  7. //#endregion
  8. export { useModal };