package hg_lib

  1. Overview
  2. Docs
module Public : sig ... end
include module type of struct include Public end
type t = Public.t =
  1. | Modified of string
  2. | Added of string
  3. | Removed of string
  4. | Copied of {
    1. src : string;
    2. dst : [ `New_file of string | `Overwritten of string ];
    }
  5. | Missing of string
  6. | Not_tracked of string
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t