teal/moduleapi: Describe timer wrapper

Since it's used in mod_cron
This commit is contained in:
Kim Alvefur 2022-05-15 15:27:35 +02:00
parent 9135764484
commit 04c6caba50

View file

@ -62,7 +62,12 @@ global record moduleapi
send_iq : function (moduleapi, st.stanza_t, util_session, number)
broadcast : function (moduleapi, { string }, st.stanza_t, function)
type timer_callback = function (number, ... : any) : number
add_timer : function (moduleapi, number, timer_callback, ... : any)
record timer_wrapper
stop : function (timer_wrapper)
disarm : function (timer_wrapper)
reschedule : function (timer_wrapper, number)
end
add_timer : function (moduleapi, number, timer_callback, ... : any) : timer_wrapper
get_directory : function (moduleapi) : string
enum file_mode
"r" "w" "a" "r+" "w+" "a+"