UNPKG

ideaz-element

Version:

<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>

16 lines (14 loc) 568 B
import { AppContext, VNode } from 'vue'; import { DialogProps } from './props'; export type IDialogTipMethod = (message: string | VNode, title: string, options?: Partial<DialogProps>, appContext?: AppContext | null) => any; export interface IDialogTip { _context: AppContext | null; (options: Partial<DialogProps>, appContext?: AppContext | null): void; normal: IDialogTipMethod; warning: IDialogTipMethod; danger: IDialogTipMethod; info: IDialogTipMethod; close: () => void; } declare const _default: IDialogTip; export default _default;