mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
18 lines
254 B
Text
18 lines
254 B
Text
local record lib
|
|
encode : function (any) : string
|
|
decode : function (string) : any, string
|
|
|
|
enum json_type_name
|
|
"null"
|
|
"boolean"
|
|
"object"
|
|
"array"
|
|
"number"
|
|
"string"
|
|
"integer"
|
|
end
|
|
|
|
type null_type = (nil)
|
|
null : null_type
|
|
end
|
|
return lib
|