package calculon-web

  1. Overview
  2. Docs
type image = {
  1. i_url : string;
}
type images = {
  1. images_original : image option;
  2. images_downsized : image option;
}
type search_entry = {
  1. type_ : string;
  2. url : string;
  3. embed_url : string;
  4. images : images;
}
type json = Yojson.Safe.json
type search_result = {
  1. data : search_entry list;
  2. meta : json;
  3. pagination : json;
}