Everything is meta

This commit is contained in:
2025-05-04 15:15:00 +02:00
parent 859955aa36
commit 169a514973
3089 changed files with 3089 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Confirms abandoning a quest. Use SetAbandonQuest() first to select the quest to abandon. ---Confirms abandoning a quest. Use SetAbandonQuest() first to select the quest to abandon.
function AbandonQuest() end function AbandonQuest() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param index number ---@param index number
---Unlearns a skill (used only for professions) ---Unlearns a skill (used only for professions)

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts the next upcoming periodic resurrection from a battleground spirit healer. Automatically called in the default UI in response to the AREA_SPIRIT_HEALER_IN_RANGE event which fires when the player's ghost is near a battleground spirit healer. ---Accepts the next upcoming periodic resurrection from a battleground spirit healer. Automatically called in the default UI in response to the AREA_SPIRIT_HEALER_IN_RANGE event which fires when the player's ghost is near a battleground spirit healer.
function AcceptAreaSpiritHeal() end function AcceptAreaSpiritHeal() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param index number ---@param index number
---@param accept 1nil ---@param accept 1nil

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts a proposed duel ---Accepts a proposed duel
function AcceptDuel() end function AcceptDuel() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts an invitation to join a party or raid. Usable in response to the PARTY_INVITE_REQUEST event which fires when the player is invited to join a group. This function does not automatically hide the default UI's group invite dialog; doing such requires calling StaticPopup_Hide("PARTY_INVITE"), but only after the PARTY_MEMBERS_CHANGED event fires indicating the player has successfully joined the group. ---Accepts an invitation to join a party or raid. Usable in response to the PARTY_INVITE_REQUEST event which fires when the player is invited to join a group. This function does not automatically hide the default UI's group invite dialog; doing such requires calling StaticPopup_Hide("PARTY_INVITE"), but only after the PARTY_MEMBERS_CHANGED event fires indicating the player has successfully joined the group.
function AcceptGroup() end function AcceptGroup() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts an invitation to join a guild. Usable in response to the GUILD_INVITE_REQUEST event, which fires when the player is invited to join a guild. ---Accepts an invitation to join a guild. Usable in response to the GUILD_INVITE_REQUEST event, which fires when the player is invited to join a guild.
function AcceptGuild() end function AcceptGuild() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts a level offered by the player's Recruit-a-Friend partner ---Accepts a level offered by the player's Recruit-a-Friend partner
function AcceptLevelGrant() end function AcceptLevelGrant() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts a LFG dungeon invite. ---Accepts a LFG dungeon invite.
function AcceptProposal() end function AcceptProposal() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts the quest offered by a questgiver. Usable following the QUEST_DETAIL event in which the questgiver presents the player with the details of a quest and the option to accept or decline. ---Accepts the quest offered by a questgiver. Usable following the QUEST_DETAIL event in which the questgiver presents the player with the details of a quest and the option to accept or decline.
function AcceptQuest() end function AcceptQuest() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts an offered resurrection spell. Not used for self-resurrection; see UseSoulstone() for such cases. ---Accepts an offered resurrection spell. Not used for self-resurrection; see UseSoulstone() for such cases.
function AcceptResurrect() end function AcceptResurrect() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts changes made in the Item Socketing UI. Any gems added are permanently socketed into the item, and any existing gems replaced by new gems are destroyed. This function only has effect while the Item Socketing UI is open (i.e. between the SOCKET_INFO_UPDATE and SOCKET_INFO_CLOSE events). ---Accepts changes made in the Item Socketing UI. Any gems added are permanently socketed into the item, and any existing gems replaced by new gems are destroyed. This function only has effect while the Item Socketing UI is open (i.e. between the SOCKET_INFO_UPDATE and SOCKET_INFO_CLOSE events).
function AcceptSockets() end function AcceptSockets() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function AcceptSpellConfirmationPrompt() end function AcceptSpellConfirmationPrompt() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Accepts a proposed trade. Once both players have accepted, the trade process completes and the actual exchange of items/money/enchants takes place. ---Accepts a proposed trade. Once both players have accepted, the trade process completes and the actual exchange of items/money/enchants takes place.
function AcceptTrade() end function AcceptTrade() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Resurrects the player at a spirit healer, accepting possible consequences. Resurrecting at a spirit healer generally results in a loss of durability (both equipped items and those in the player's bags) and may also result in the Resurrection Sickness debuff. Early in the development of World of Warcraft, resurrecting at a spirit healer caused a loss of experience points. The change to a loss of item durability was made before the initial public release of World of Warcraft, but the name of this function was never changed. ---Resurrects the player at a spirit healer, accepting possible consequences. Resurrecting at a spirit healer generally results in a loss of durability (both equipped items and those in the player's bags) and may also result in the Resurrection Sickness debuff. Early in the development of World of Warcraft, resurrecting at a spirit healer caused a loss of experience points. The change to a loss of item durability was made before the initial public release of World of Warcraft, but the name of this function was never changed.
function AcceptXPLoss() end function AcceptXPLoss() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function AcknowledgeAutoAcceptQuest() end function AcknowledgeAutoAcceptQuest() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function AcknowledgeSurvey() end function AcknowledgeSurvey() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param slot number ---@param slot number
---@return 1nil hasRange ---@return 1nil hasRange

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param questId number ---@param questId number
---@param type OFFER ---@param type OFFER

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param index number ---@param index number
---@param channel number ---@param channel number

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param index number ---@param index number
---@param messageGroup string ---@param messageGroup string

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param name string ---@param name string
---Adds a character to the friends list ---Adds a character to the friends list

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param name string ---@param name string
---Adds a character to the ignore list ---Adds a character to the ignore list

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param name string ---@param name string
---Adds a character to the muted list for voice chat. The Muted list acts for voice chat as the Ignore list does for text chat: muted characters will never be heard regardless of which voice channels they join the player in. ---Adds a character to the muted list for voice chat. The Muted list acts for voice chat as the Ignore list does for text chat: muted characters will never be heard regardless of which voice channels they join the player in.

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param fullname string ---@param fullname string
---Adds the named character to the ignore list, or removes the character if already in the ignore list ---Adds the named character to the ignore list, or removes the character if already in the ignore list

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param unit string ---@param unit string
---@param name string ---@param name string

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param name string ---@param name string
---@param note string ---@param note string

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param questIndex number ---@param questIndex number
---Adds a quest to the objectives tracker ---Adds a quest to the objectives tracker

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param id number ---@param id number
---Adds an achievement to the objectives tracker UI ---Adds an achievement to the objectives tracker UI

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Adds the money currently on the cursor to the trade window ---Adds the money currently on the cursor to the trade window
function AddTradeMoney() end function AddTradeMoney() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param fullName string ---@param fullName string
---@param context string ---@param context string

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function AntiAliasingSupported() end function AntiAliasingSupported() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Purchases the selected barber shop style changes. Does not exit the barber shop session, so further changes are still allowed. The BARBER_SHOP_SUCCESS and BARBER_SHOP_APPEARANCE_APPLIED events fire once the style change takes effect. ---Purchases the selected barber shop style changes. Does not exit the barber shop session, so further changes are still allowed. The BARBER_SHOP_SUCCESS and BARBER_SHOP_APPEARANCE_APPLIED events fire once the style change takes effect.
function ApplyBarberShopStyle() end function ApplyBarberShopStyle() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Applies all pending transmogrifications, and pays for the cost ---Applies all pending transmogrifications, and pays for the cost
function ApplyTransmogrifications() end function ApplyTransmogrifications() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function ArchaeologyGetIconInfo() end function ArchaeologyGetIconInfo() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return number numEntries ---@return number numEntries
---Returns the number of digsites in the current zone. The value returned reflects dig sites for the current zone: If the world map is visible, the currently viewed zone; else, the player's zone. It will always return 0 when called while the zone is continent or further zoomed out. ---Returns the number of digsites in the current zone. The value returned reflects dig sites for the current zone: If the world map is visible, the currently viewed zone; else, the player's zone. It will always return 0 when called while the zone is continent or further zoomed out.

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param index number ---@param index number
---@return number blobID ---@return number blobID

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return 1nil isHidden ---@return 1nil isHidden
---Returns whether the player is displaying only character achievements to others ---Returns whether the player is displaying only character achievements to others

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param teamSize number ---@param teamSize number
---@return number teamID ---@return number teamID

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Stops movement initiated by JumpOrAscendStart. Used by the JUMP binding, which also controls ascent when swimming or flying. Has no meaningful effect if called while jumping (in which case movement is generally stopped by hitting the ground). ---Stops movement initiated by JumpOrAscendStart. Used by the JUMP binding, which also controls ascent when swimming or flying. Has no meaningful effect if called while jumping (in which case movement is generally stopped by hitting the ground).
function AscendStop() end function AscendStop() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param unit string ---@param unit string
---@param name string ---@param name string

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Begins auto-attack against the player's current target. (If the "Auto Attack/Auto Shot" option is turned on, also begins Auto Shot for hunters.) ---Begins auto-attack against the player's current target. (If the "Auto Attack/Auto Shot" option is turned on, also begins Auto Shot for hunters.)
function AttackTarget() end function AttackTarget() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function AutoChooseCurrentGraphicsSetting() end function AutoChooseCurrentGraphicsSetting() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---Equips the item on the cursor. The item is automatically equipped in the first available slot in which it fits. To equip an item in a specific slot, see EquipCursorItem(). Causes an error message (UI_ERROR_MESSAGE) if the item on the cursor cannot be equipped. Does nothing if the cursor does not contain an item. ---Equips the item on the cursor. The item is automatically equipped in the first available slot in which it fits. To equip an item in a specific slot, see EquipCursorItem(). Causes an error message (UI_ERROR_MESSAGE) if the item on the cursor cannot be equipped. Does nothing if the cursor does not contain an item.
function AutoEquipCursorItem() end function AutoEquipCursorItem() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param mailID number ---@param mailID number
---Automatically takes any attached items and money from a mail. If the mail does not have body text (which can be saved as a permanent copy), also deletes the mail. ---Automatically takes any attached items and money from a mail. If the mail does not have body text (which can be saved as a permanent copy), also deletes the mail.

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param tab number ---@param tab number
---@param slot number ---@param slot number

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNAcceptFriendInvite() end function BNAcceptFriendInvite() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNCheckBattleTagInviteToGuildMember() end function BNCheckBattleTagInviteToGuildMember() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNCheckBattleTagInviteToUnit() end function BNCheckBattleTagInviteToUnit() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return boolean isOnline ---@return boolean isOnline
---Returns whether or not the player is connected to Battle.net ---Returns whether or not the player is connected to Battle.net

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param presenceID_1 number ---@param presenceID_1 number
---@param presenceID_2 number ---@param presenceID_2 number

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNDeclineFriendInvite() end function BNDeclineFriendInvite() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return boolean isEnabled ---@return boolean isEnabled
---Returns whether or not RealID services are disabled ---Returns whether or not RealID services are disabled

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNFeaturesEnabledAndConnected() end function BNFeaturesEnabledAndConnected() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetBlockedInfo() end function BNGetBlockedInfo() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetBlockedToonInfo() end function BNGetBlockedToonInfo() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param channel number ---@param channel number
---@return string type ---@return string type

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param channel number ---@param channel number
---@param memberIndex number ---@param memberIndex number

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetCustomMessageTable() end function BNGetCustomMessageTable() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param presenceID number ---@param presenceID number
---@param mutual boolean ---@param mutual boolean

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param presenceID number ---@param presenceID number
---@return number index ---@return number index

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param friendIndex number ---@param friendIndex number
---@return number presenceID ---@return number presenceID

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param presenceID number ---@param presenceID number
---@return number presenceID ---@return number presenceID

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetFriendInviteInfo() end function BNGetFriendInviteInfo() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param friendIndex number ---@param friendIndex number
---@param toonIndex number ---@param toonIndex number

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return number unknownPresenceID1 ---@return number unknownPresenceID1
---@return string battleTag ---@return string battleTag

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return boolean isEnabled ---@return boolean isEnabled
---Returns boolean for the Mature Language Filter option's state. ---Returns boolean for the Mature Language Filter option's state.

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return number count ---@return number count
---Returns the maximum number of simultaneous RealID conversations you can be a part of ---Returns the maximum number of simultaneous RealID conversations you can be a part of

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return number count ---@return number count
---Returns the maximum number of realID friends you can have in one conversation ---Returns the maximum number of realID friends you can have in one conversation

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetNumBlocked() end function BNGetNumBlocked() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetNumBlockedToons() end function BNGetNumBlockedToons() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param channel number ---@param channel number
---@return number memberCount ---@return number memberCount

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetNumFOF() end function BNGetNumFOF() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetNumFriendInvites() end function BNGetNumFriendInvites() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param friendIndex number ---@param friendIndex number
---@return number numToons ---@return number numToons

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return number totalBNet ---@return number totalBNet
---@return number numBNetOnline ---@return number numBNetOnline

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetSelectedBlock() end function BNGetSelectedBlock() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@return number friendIndex ---@return number friendIndex
---Returns the index of the selected user on your friend's list ---Returns the index of the selected user on your friend's list

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNGetSelectedToonBlock() end function BNGetSelectedToonBlock() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param bnetIDGameAccount number ---@param bnetIDGameAccount number
---@return boolean unknown ---@return boolean unknown

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNInviteFriend() end function BNInviteFriend() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param channel number ---@param channel number
---@param presenceID number ---@param presenceID number

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNIsBlocked() end function BNIsBlocked() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNIsFriend() end function BNIsFriend() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNIsFriendConversationValid() end function BNIsFriendConversationValid() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param presenceID number ---@param presenceID number
---@return boolean isSelf ---@return boolean isSelf

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNIsToonBlocked() end function BNIsToonBlocked() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNLeaveConversation() end function BNLeaveConversation() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNListConversation() end function BNListConversation() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNRemoveFriend() end function BNRemoveFriend() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNReportFriendInvite() end function BNReportFriendInvite() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNReportPlayer() end function BNReportPlayer() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNRequestFOFInfo() end function BNRequestFOFInfo() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNSendConversationMessage() end function BNSendConversationMessage() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNSendFriendInvite() end function BNSendFriendInvite() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNSendFriendInviteByID() end function BNSendFriendInviteByID() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param presenceID number ---@param presenceID number
---@param addonPrefix string ---@param addonPrefix string

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNSendSoR() end function BNSendSoR() end

View File

@@ -1,3 +1,4 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
function BNSendVerifiedBattleTagInvite() end function BNSendVerifiedBattleTagInvite() end

View File

@@ -1,4 +1,5 @@
---@diagnostic disable: missing-return, lowercase-global ---@diagnostic disable: missing-return, lowercase-global
---@meta
---@param presenceID number ---@param presenceID number
---@param messageText text ---@param messageText text

Some files were not shown because too many files have changed in this diff Show More