Update DeleteWidget.interface.ts to use ReactNode for description (#14962)

This commit is contained in:
Sachin Chaurasiya 2024-01-31 12:52:40 +05:30 committed by GitHub
parent 88c7f99617
commit 52d287af57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,11 +11,12 @@
* limitations under the License.
*/
import { ReactNode } from 'react';
import { EntityType } from '../../../enums/entity.enum';
export interface DeleteOption {
title: string;
description: string;
description: ReactNode;
type: DeleteType;
isAllowed: boolean;
}