Liquidsoap_lang.Builtins_yaml
type yaml = [
| `Null
| `Bool of bool
| `Float of float
| `String of string
| `A of yaml list
| `O of (string * yaml) list
]
val yaml_parser : (string -> yaml) Stdlib.Atomic.t
val json_of_yaml : [< `A of 'a list | `Bool of 'b | `Float of 'c | `Null | `O of ('d * 'a) list | `String of 'e ] as 'a -> [> `Assoc of ('d * 'f) list | `Bool of 'b | `Float of 'c | `Null | `String of 'e | `Tuple of 'f list ] as 'f