Module Httpcats_core.CookieSource
Sourceval parse_cookie :
string ->
(string * string * [> `Host | `Secure ] option) option Sourcetype parameter = | SameSite of [ `Lax | `Strict | `None ]| Path of string| Domain of string| HttpOnly| Secure| Expires of Ptime.t| MaxAge of int
Sourcetype cookie = {key : string;value : string;prefix : [ `Host | `Secure ] option;parameters : parameter list;
} Sourceval parse_same_site : string -> [> `Lax | `None | `Strict ] option