1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/bl_bridge/client/notify/qb.lua
2025-08-04 04:28:47 +02:00

10 lines
No EOL
278 B
Lua

---@diagnostic disable: lowercase-global
---@param data NotificationParams Notification data
function notify(data)
local title, type, duration in data
if type == 'inform' then type = 'info' end
TriggerEvent('QBCore:Notify', title, type, duration)
end
return notify