separate docs stubs Includes introducing a cool new script to turn lua-language-server's json output into markdown documentation.
10 lines
274 B
Lua
10 lines
274 B
Lua
--- @meta
|
|
|
|
--- The `display` module contains Properties relating to the device's physical
|
|
--- display.
|
|
--- @class display
|
|
--- @field brightness Property The screen's current brightness, as a gamma-corrected percentage value from 0 to 100.
|
|
local display = {}
|
|
|
|
return display
|