UNPKG

yhui-yuanhuan

Version:

A Component Library for Vue 3 based on element-plus

11 lines (10 loc) 299 B
export interface IConfirmParam<T = any> { type: 'ok' | 'cancel' | 'publish'; from: 'view' | 'edit' | 'new' | 'delete' | 'other'; data?: Readonly<T> | T; /** * stop fetching display and close dialog * @param isClose default true */ done(isClose?: boolean): void; }