fix(package/notify): add missing sound type (#664)

This commit is contained in:
mardev
2024-11-08 11:01:15 +01:00
committed by GitHub
parent 10fe0d2f35
commit 776c1f6d81

View File

@@ -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);