mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 23:16:03 +01:00
9 lines
228 B
Lua
9 lines
228 B
Lua
-- Creates exports from values assigned to lib
|
|
-- Hacky workaround for Lua Language Server support
|
|
|
|
--- Alias for `exports['pe-lualib']`
|
|
lib = setmetatable({}, {
|
|
__newindex = function(self, name, fn)
|
|
exports(name, fn)
|
|
end
|
|
}) |