liquidsoap-lang
Liquidsoap_lang.Builtins_yaml
liquidsoap-lang.console
liquidsoap-lang.stdlib
liquidsoap-lang.tooling
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) 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