mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.serialization: Add Teal type specification
This commit is contained in:
parent
9dc7ac98fa
commit
efb69fa99b
1 changed files with 33 additions and 0 deletions
33
teal-src/util/serialization.d.tl
Normal file
33
teal-src/util/serialization.d.tl
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue