fix(client/interface): add missing warning notify type in npm package (#23)

This commit is contained in:
andreutu
2025-06-08 16:01:32 +03:00
committed by GitHub
parent 3c5d5faa9f
commit 815caddb02

View File

@@ -10,7 +10,7 @@ type NotificationPosition =
| 'bottom-left'
| 'center-right'
| 'center-left';
type NotificationType = 'inform' | 'error' | 'success';
type NotificationType = 'inform' | 'error' | 'success' | 'warning';
type IconAnimation = 'spin' | 'spinPulse' | 'spinReverse' | 'pulse' | 'beat' | 'fade' | 'beatFade' | 'bounce' | 'shake';
interface NotifyProps {