UNPKG

vue3-dialog-c

Version:
7 lines (6 loc) 222 B
import { type Component } from 'vue'; import { DialogConfig } from "./types"; export declare function useDialog(): { open: (dialog: Component, config: DialogConfig) => Promise<any>; close: (data?: any) => void; };