blob: 58c8d2c85c90859bf6a6feb92f18b34ea53d3a10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-- SPDX-FileCopyrightText: 2023 jacqueline <me@jacqueline.id.au>
--
-- SPDX-License-Identifier: GPL-3.0-only
--- @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
|