Files
ox_lib/resource/main.lua
Linden 52a3623e0e feat: add lib table for exports
Anything assigned to the table will be exported; it's just a hacky way to provide support for Lua Language Server.
2021-11-16 11:15:34 +11:00

8 lines
205 B
Lua

-- Creates exports from values assigned to lib.
-- Hacky workaround for Lua Language Server support.
lib = setmetatable({}, {
__newindex = function(self, name, fn)
exports(name, fn)
end
})