feat(types): update net to include method json5Decode

This commit is contained in:
Erica Marigold 2024-03-04 12:16:02 +05:30
parent e4c4ea4129
commit e719ef11c9
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -290,6 +290,19 @@ function net.jsonDecode(encoded: string): any
return nil :: any
end
--[=[
@within Net
@tag must_use
Decodes the given JSON5 string into a lua value.
@param encoded The JSON5 string to decode
@return The decoded lua value
]=]
function net.json5Decode(encoded: string): any
return nil :: any
end
--[=[
@within Net
@tag must_use