Is it possible to use varargs inside the @param with the EmmyLua doc?
I tried to do
---@param ... number[]
function method(...)
local test = select(1, ...)
end
and
---@param ... number...
function method(...)
local test = select(1, ...)
end
But none works correctly, and the test variable is never recognized as a number.
Is it possible to use varargs inside the @param with the EmmyLua doc?
I tried to do
and
But none works correctly, and the
testvariable is never recognized as a number.