Module Httpcats_core.Cookie
module Month : sig ... endmodule Zone : sig ... endmodule Date : sig ... endval parse_cookie :
string ->
(string * string * [> `Host | `Secure ] option) optiontype parameter = | SameSite of [ `Lax | `Strict | `None ]| Path of string| Domain of string| HttpOnly| Secure| Expires of Ptime.t| MaxAge of int
type cookie = {key : string;value : string;prefix : [ `Host | `Secure ] option;parameters : parameter list;
}val parse_rfc822_date : string -> Ptime.t optionval parse_same_site : string -> [> `Lax | `None | `Strict ] optionval parse_parameter : string -> parameter optionval parse : string -> cookie option