django-vue3-admin-web/node_modules/element-plus/es/hooks/use-modal/index.d.ts
2025-10-20 21:21:14 +08:00

7 lines
190 B
TypeScript

import type { Ref } from 'vue';
type ModalInstance = {
handleClose: () => void;
};
export declare const useModal: (instance: ModalInstance, visibleRef: Ref<boolean>) => void;
export {};