module Date: sig .. end
sig
end
type t = {
year : int;
int
month : int;
day : int;
val to_string : t -> string
t -> string
val of_string : string -> [> `Error of string | `Ok of t ]
string -> [> `Error of string | `Ok of t ]