Module Httpcats_core.Cookie

module Day : sig ... end
module Month : sig ... end
module Zone : sig ... end
module Date : sig ... end
type parameter =
  1. | SameSite of [ `Lax | `Strict | `None ]
  2. | Path of string
  3. | Domain of string
  4. | HttpOnly
  5. | Secure
  6. | Expires of Ptime.t
  7. | MaxAge of int
val parse_rfc822_date : string -> Ptime.t option
val parse_same_site : string -> [> `Lax | `None | `Strict ] option
val parse_parameter : string -> parameter option
val parse : string -> cookie option