15 lines
545 B
Lua
15 lines
545 B
Lua
---@class __HELIUM_CONFIG
|
|
---@field DEBUG boolean
|
|
---@field LOAD_HOOKS boolean
|
|
---@field LOAD_LAYOUT boolean
|
|
---@field LOAD_SHELL boolean
|
|
---@field MANUAL_CACHING boolean
|
|
|
|
---@type __HELIUM_CONFIG
|
|
return {
|
|
DEBUG = true, --Reserved for later
|
|
LOAD_HOOKS = false, --Loads the hooks module in to helium table
|
|
LOAD_LAYOUT = false, --Loads the layout module in to helium table
|
|
LOAD_SHELL = false, --Loads the shell mocule in to helium table
|
|
MANUAL_CACHING = false, --Whether or not to perform automatic caching
|
|
} |