7 lines
416 B
Lua
7 lines
416 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param name string
|
|
---Removes a character from the player's party or raid. Only works if the player is the party leader, raid leader, or raid assistant. Also used by the Looking For Group tool to vote kick players. This is what the "reason" argument is used for.
|
|
---@overload fun(name: string, reason: string): nil
|
|
function UninviteUnit(name, reason) end
|