y-design-ssr
Version:
SSR component library of YUI with Vue3
8 lines (7 loc) • 309 B
TypeScript
import { Slot } from 'vue';
import { DialogPropsType } from './dialog';
interface DialogOptionsType extends Omit<DialogPropsType, 'modelValue'> {
key: string;
}
declare const createDialog: (customProps: Partial<DialogOptionsType>, customSlots?: Record<string, Slot>) => void;
export default createDialog;