Ketho / vscode-wow-api

VS Code extension for World of Warcraft AddOns
https://marketplace.visualstudio.com/items?itemName=ketho.wow-api
MIT License
151 stars 33 forks source link

C_NamePlate.GetNamePlates is missing return type #122

Closed emmericp closed 10 months ago

emmericp commented 10 months ago

The wiki page has the return type, so not sure where/how this is going wrong: https://warcraft.wiki.gg/wiki/API_C_NamePlate.GetNamePlates?action=edit

Ketho commented 10 months ago

C_NamePlate is kind of annoying since it's lacking documentation in Blizzard_APIDocumentationGenerated

I have manually annotated it on the wiki page and added the NameplateBase type

<!-- emmylua
---@param isSecure? boolean
---@return NameplateBase nameplates
function C_NamePlate.GetNamePlates(isSecure) end
-->
emmericp commented 10 months ago

thank you!