package horned_worm

  1. Overview
  2. Docs
type origin =
  1. | Any
  2. | OneOf of string list
  3. | Predicate of string -> bool
type t = {
  1. allowed_origin : origin;
  2. allow_cookies : bool;
  3. max_age : int option;
  4. expose_headers : string option;
}
val default : t