Update LuaLS definitions
This commit is contained in:
@@ -141,6 +141,14 @@ function Container:addContainer()
|
|||||||
return self
|
return self
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--- Adds a new Dropdown to the container
|
||||||
|
---@generic Element: Container
|
||||||
|
---@param self Element
|
||||||
|
---@return Dropdown
|
||||||
|
function Container:addDropdown()
|
||||||
|
return self
|
||||||
|
end
|
||||||
|
|
||||||
--- Adds a new Flexbox to the container
|
--- Adds a new Flexbox to the container
|
||||||
---@generic Element: Container
|
---@generic Element: Container
|
||||||
---@param self Element
|
---@param self Element
|
||||||
@@ -181,6 +189,14 @@ function Container:addList()
|
|||||||
return self
|
return self
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--- Adds a new Menu to the container
|
||||||
|
---@generic Element: Container
|
||||||
|
---@param self Element
|
||||||
|
---@return Menu
|
||||||
|
function Container:addMenu()
|
||||||
|
return self
|
||||||
|
end
|
||||||
|
|
||||||
--- Adds a new Program to the container
|
--- Adds a new Program to the container
|
||||||
---@generic Element: Container
|
---@generic Element: Container
|
||||||
---@param self Element
|
---@param self Element
|
||||||
@@ -205,6 +221,22 @@ function Container:addSlider()
|
|||||||
return self
|
return self
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--- Adds a new Table to the container
|
||||||
|
---@generic Element: Container
|
||||||
|
---@param self Element
|
||||||
|
---@return Table
|
||||||
|
function Container:addTable()
|
||||||
|
return self
|
||||||
|
end
|
||||||
|
|
||||||
|
--- Adds a new Tree to the container
|
||||||
|
---@generic Element: Container
|
||||||
|
---@param self Element
|
||||||
|
---@return Tree
|
||||||
|
function Container:addTree()
|
||||||
|
return self
|
||||||
|
end
|
||||||
|
|
||||||
--- Adds a new VisualElement to the container
|
--- Adds a new VisualElement to the container
|
||||||
---@generic Element: Container
|
---@generic Element: Container
|
||||||
---@param self Element
|
---@param self Element
|
||||||
|
|||||||
Reference in New Issue
Block a user