Module Biocaml_entrez.Make.PubmedSummary (.ml)

module PubmedSummary: 
sig
type t = {
   pmid : int;
   doi : string option;
   pubdate : string option;
   source : string option;
   title : string;
}
val search : string -> t list F.fetched
end