You can search for identifiers within the package.
in-package search v0.2.0
trail
Trail.CORS
type args = {
origin : string;
credentials : bool;
max_age : int64;
headers : string list;
expose : string list;
methods : string list;
send_preflight_response : bool;
}
type state = args
val config : ?origin:string -> ?credentials:bool -> ?max_age:int64 -> ?headers:string list -> ?expose:string list -> ?methods:string list -> ?send_preflight_response:bool -> unit -> args
val init : args -> state
val call : Conn.t -> state -> Conn.t