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;
}
