Client.Client
type 'a t
type ctx
type error
type meth = [
| `HEAD
| `GET
| `POST
]
type response = {
headers : (string * string) list;
status : int;
}
val request : ?ctx:ctx -> ?meth:meth -> ?headers:(string * string) list -> ?body:string -> string -> (response * string, error) Stdlib.result t