This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,22 @@
(** V1 of the diagnostics module. *)
module Related : sig
type t
val to_diagnostic_related : t -> Exported_types.Diagnostic.Related.t
val of_diagnostic_related : Exported_types.Diagnostic.Related.t -> t
end
type t
val sexp : (t, Conv.values) Conv.t
val to_diagnostic : t -> Exported_types.Diagnostic.t
val of_diagnostic : Exported_types.Diagnostic.t -> t
module Event : sig
type t
val sexp : (t, Conv.values) Conv.t
val to_event : t -> Exported_types.Diagnostic.Event.t
val of_event : Exported_types.Diagnostic.Event.t -> t
end