teal-src/util/datetime.d.tl
author Kim Alvefur <zash@zash.se>
Sun, 09 Oct 2022 15:38:36 +0200
branch0.12
changeset 12763 ec54fe0003d5
parent 11463 86904555bffc
child 12638 8cb6644ce463
permissions -rw-r--r--
util.jsonschema: Fix Lua 5.2 integer compat math.type() is unavailable before Lua 5.3 so this should use the compat function added at the top

-- TODO s/number/integer/ once Teal gets support for that

local record lib
	date     : function (t : integer) : string
	datetime : function (t : integer) : string
	time     : function (t : integer) : string
	legacy   : function (t : integer) : string
	parse    : function (t : string) : integer
end

return lib