From 776c1f6d818f37441ece2bdbb55e94d5e8e5ddde Mon Sep 17 00:00:00 2001 From: mardev Date: Fri, 8 Nov 2024 11:01:15 +0100 Subject: [PATCH] fix(package/notify): add missing sound type (#664) --- package/client/resource/interface/notify.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/package/client/resource/interface/notify.ts b/package/client/resource/interface/notify.ts index 6ed4c88..81be530 100644 --- a/package/client/resource/interface/notify.ts +++ b/package/client/resource/interface/notify.ts @@ -26,6 +26,7 @@ interface NotifyProps { iconColor?: string; iconAnimation?: IconAnimation; alignIcon?: 'top' | 'center'; + sound?: { bank?: string; set: string; name: string }; } export const notify = (data: NotifyProps): void => exports.ox_lib.notify(data);