Refactor #4433 - ConfirmDialog

This commit is contained in:
Tuğçe Küçükoğlu 2023-09-19 13:51:23 +03:00
parent 44f802dc0f
commit c368c0f8df
3 changed files with 31 additions and 8 deletions

View file

@ -211,6 +211,20 @@ export interface ConfirmDialogSlots {
* Custom icon template.
*/
rejecticon(): VNode[];
/**
* Custom container slot.
* @param {Object} scope - container slot's params.
*/
container(scope: {
/**
* Message of the component
*/
message: any;
/**
* Close dialog function.
*/
onClose: () => void;
}): VNode[];
}
/**