util.serialization: Add Teal type specification

This commit is contained in:
Kim Alvefur 2021-12-01 15:05:06 +01:00
parent 9dc7ac98fa
commit efb69fa99b

View file

@ -0,0 +1,33 @@
local record _M
enum preset
"debug"
"oneline"
"compact"
end
type fallback = function (any, string) : string
record config
preset : preset
fallback : fallback
fatal : boolean
keywords : { string : boolean }
indentwith : string
itemstart : string
itemsep : string
itemlast : string
tstart : string
tend : string
kstart : string
kend : string
equals : string
unquoted : boolean | string
hex : string
freeze : boolean
maxdepth : integer
multirefs : boolean
table_pairs : function
end
type serializer = function (any) : string
new : function (config|preset) : serializer
serialize : function (any, config|preset) : string
end
return _M