Files
ox_lib/resource/interface/client/clipboard.lua
T

16 lines
362 B
Lua
Raw Normal View History

2025-03-18 18:46:09 +11:00
--[[
https://github.com/overextended/ox_lib
This file is licensed under LGPL-3.0 or higher <https://www.gnu.org/licenses/lgpl-3.0.en.html>
Copyright (c) 2025 Linden <https://github.com/thelindat/fivem>
]]
---@param value string
function lib.setClipboard(value)
SendNUIMessage({
action = 'setClipboard',
data = value
})
2025-03-18 18:46:09 +11:00
end