helium/shell/init.lua
2021-07-03 21:13:03 +03:00

13 lines
291 B
Lua

local path = ...
---@class __HELIUM_SHELL
---@field button any
---@field checkbox any
---@field input any
---@field slider any
return {
button = require(path..'.button'),
checkbox = require(path..'.checkbox'),
input = require(path..'.input'),
slider = require(path..'.slider'),
}