fix(web/notifications): add string as type to id

This commit is contained in:
Luke
2023-02-15 11:46:41 +01:00
parent 59a495a541
commit 5b4c6b8674

View File

@@ -14,7 +14,7 @@ export interface CustomNotificationProps {
icon?: IconProp; icon?: IconProp;
iconColor?: string; iconColor?: string;
position?: ToastPosition | 'top' | 'bottom'; position?: ToastPosition | 'top' | 'bottom';
id?: number; id?: number | string;
type?: string; type?: string;
} }