Module Exif.Date

module Date: sig .. end

type t = {
   year : int;
   month : int;
   day : int;
}
Date for GPSDateStamp
val to_string : t -> string
val of_string : string -> [> `Error of string | `Ok of t ]