9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
export interface IDialogConfirmationProps {
|
|
contentText: string;
|
|
isLoading: boolean;
|
|
isOpen: boolean;
|
|
onCancel: () => void;
|
|
onConfirm: () => void;
|
|
title: string;
|
|
}
|