From 815caddb021b108e2123646bad38ae3c29369bb1 Mon Sep 17 00:00:00 2001 From: andreutu <91362974+andreutu@users.noreply.github.com> Date: Sun, 8 Jun 2025 16:01:32 +0300 Subject: [PATCH] fix(client/interface): add missing warning notify type in npm package (#23) --- package/client/resource/interface/notify.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/client/resource/interface/notify.ts b/package/client/resource/interface/notify.ts index 81be530..abd397d 100644 --- a/package/client/resource/interface/notify.ts +++ b/package/client/resource/interface/notify.ts @@ -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 {