Files
wow_Meta/api/getfenv.lua
2024-12-16 13:13:08 +01:00

7 lines
319 B
Lua

---@diagnostic disable: missing-return, lowercase-global
---@param f function
---@param stackLevel number
---@return table env
---Returns the environment for a function (or the global environment). If the environment has a __environment metatable, that value is returned instead.
function getfenv(f, stackLevel) end