Update config, LuaLS definitions, bundle and changelog

This commit is contained in:
github-actions[bot]
2025-03-02 21:04:22 +00:00
parent 0af0a62528
commit 21f16996e7
3 changed files with 377 additions and 371 deletions

View File

@@ -744,7 +744,6 @@ end
---@class Image
---@field bimg table
---@field currentFrame number
---@field metadata table
---@field autoResize boolean
---@field offsetX number
---@field offsetY number
@@ -786,24 +785,6 @@ function Image:setCurrentFrame(currentFrame)
return self
end
--- Gets the Image metadata (version, palette, etc)
---@generic Element: Image
---@param self Element
---@return table
function Image:getMetadata()
return self.metadata
end
--- Sets the Image metadata (version, palette, etc)
---@generic Element: Image
---@param self Element
---@param metadata table
---@return Element
function Image:setMetadata(metadata)
self.metadata = metadata
return self
end
--- Gets the Whether to automatically resize the image when content exceeds bounds
---@generic Element: Image
---@param self Element