mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-01-24 09:41:17 +00:00
7 lines
190 B
TypeScript
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 {};
|