package codept-lib

  1. Overview
  2. Docs
type ('lbl, 'a) ext = {
  1. title : string;
  2. description : string;
  3. version : Version.t;
  4. label : 'lbl label;
  5. inner : 'a t;
}
type ('a, 'b) t = ('a, 'b) ext
type 'a diff = {
  1. expected : 'a;
  2. got : 'a;
}
type error =
  1. | Future_version of Version.t diff
  2. | Mismatched_kind of string diff
  3. | Unknown_format
  4. | Parse_error
val pretty_json : ('lbl, 'a) t -> Format.formatter -> 'a -> unit
val simple_json : ('lbl, 'a) t -> Format.formatter -> 'a -> unit
val sexp : ('lbl, 'a) t -> Format.formatter -> 'a -> unit
val json_schema : Format.formatter -> ('lbl, 'a) t -> unit
val strict : ('lbl, 'a) t -> Untyped.t -> ('a, error) result
OCaml

Innovation. Community. Security.