23 lines
460 B
Lua
23 lines
460 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
---@meta
|
|
|
|
---@alias actionType
|
|
---| "companion"
|
|
---| "equipmentset"
|
|
---| "flyout"
|
|
---| "item"
|
|
---| "macro"
|
|
---| "spell"
|
|
---@alias actionSubType
|
|
---| "CRITTER"
|
|
---| "MOUNT"
|
|
---| "spell"
|
|
|
|
---@param slot number
|
|
---@return actionType #type
|
|
---@return string|number #id
|
|
---@return actionSubType #subType
|
|
---@return string #spellID
|
|
---Returns information about an action slot
|
|
function GetActionInfo(slot) end
|