aboutsummaryrefslogtreecommitdiffstats
path: root/teal-src/util/datetime.d.tl
blob: 971e8f9c9328c015b76cf8750276cb7429a1663f (plain)
1
2
3
4
5
6
7
8
9
10
11
-- 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