package prom

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type ezjsonm = [
  1. | `O of (string * ezjsonm) list
  2. | `A of ezjsonm list
  3. | `Bool of bool
  4. | `Float of float
  5. | `String of string
  6. | `Null
]
type yojson = [
  1. | `Bool of bool
  2. | `Assoc of (string * yojson) list
  3. | `Float of float
  4. | `Int of int
  5. | `Intlit of string
  6. | `List of yojson list
  7. | `Null
  8. | `String of string
  9. | `Tuple of yojson list
  10. | `Variant of string * yojson option
]
module File_sd_config : sig ... end