Module Liquidsoap_lang.JsonSource
Sourcetype t = [ | `Assoc of (string * t) list| `Tuple of t list| `String of string| `Bool of bool| `Float of float| `Int of int| `Null
] Sourcetype parse_error = {pos : pos;message : string;
} Sourceval from_string : ?pos:pos list -> ?json5:bool -> string -> t Sourceval to_string : ?compact:bool -> ?json5:bool -> t -> string