separate docs stubs Includes introducing a cool new script to turn lua-language-server's json output into markdown documentation.
13 lines
256 B
Lua
13 lines
256 B
Lua
--- @meta
|
|
|
|
--- The `time` module contains functions for dealing with the current time
|
|
--- since boot.
|
|
--- @class time
|
|
local time = {}
|
|
|
|
--- Returns the time in milliseconds since the device booted.
|
|
--- @return integer
|
|
function time.ticks() end
|
|
|
|
return time
|