mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-10-31 23:26:19 +00:00
8fac68386e
- Lint references to unknown fields of modules, excluding the keys and colours modules. This caught several silly errors in our stub files, but nothing else. - Lint on using unknown globals. This highlighted a couple of really silly mistakes. Fixes #427. - Add documentation for fs.attributes, fs.getCapacity and pocket, as they were not defined before. Co-authored-by: JackMacWindows <jackmacwindowslinux@gmail.com>
25 lines
666 B
Lua
25 lines
666 B
Lua
function queueEvent(event, ...) end
|
|
function startTimer(delay) end
|
|
function setAlarm(time) end
|
|
function shutdown() end
|
|
function reboot() end
|
|
function getComputerID() end
|
|
computerID = getComputerID
|
|
function setComputerLabel(label) end
|
|
function getComputerLabel() end
|
|
computerLabel = getComputerLabel
|
|
function clock() end
|
|
function time(timezone) end
|
|
function day(timezone) end
|
|
function cancelTimer(id) end
|
|
function cancelAlarm(id) end
|
|
function epoch(timezone) end
|
|
function date(format, time) end
|
|
|
|
-- Defined in bios.lua
|
|
function loadAPI(path) end
|
|
function pullEvent(filter) end
|
|
function pullEventRaw(filter) end
|
|
function version() end
|
|
function run(env, path, ...) end
|