aboutsummaryrefslogtreecommitdiffstats
path: root/teal-src
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-08-17 18:41:35 +0200
committerKim Alvefur <zash@zash.se>2022-08-17 18:41:35 +0200
commitcbff90a7ac5236a86accefdfd501147a1b5007fc (patch)
tree982ef4f02bc16ba35a2f12ee2b58c19d587a1233 /teal-src
parent68867c09d6c6298fcbea882b884005dbb8aa2792 (diff)
downloadprosody-cbff90a7ac5236a86accefdfd501147a1b5007fc.tar.gz
prosody-cbff90a7ac5236a86accefdfd501147a1b5007fc.zip
util.datetime: Update Teal interface description
Integers were required before, now any number should work.
Diffstat (limited to 'teal-src')
-rw-r--r--teal-src/util/datetime.d.tl12
1 files changed, 5 insertions, 7 deletions
diff --git a/teal-src/util/datetime.d.tl b/teal-src/util/datetime.d.tl
index 971e8f9c..9f770a73 100644
--- a/teal-src/util/datetime.d.tl
+++ b/teal-src/util/datetime.d.tl
@@ -1,11 +1,9 @@
--- 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
+ date : function (t : number) : string
+ datetime : function (t : number) : string
+ time : function (t : number) : string
+ legacy : function (t : number) : string
+ parse : function (t : string) : number
end
return lib