<img width="912" alt="Image" src="https://github.com/user-attachments/assets/c9c30bb9-fed0-484c-a43b-85eb1c77638f" /> ```lua --- @alias myalias string|string[] --- @param x myalias function foo(x) if type(x) == 'string' then return elseif type(x) == 'table' then for _, t in ipairs(x) do end end end ```