Current section
Files
Jump to
Current section
Files
src/jackson@internal@json.erl
-module(jackson@internal@json).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export_type([json/0]).
-type json() :: {object, list({binary(), json()})} |
{array, list(json())} |
{integer, integer()} |
{float, float()} |
null |
{bool, boolean()} |
{string, binary()}.