Module Parameters.Display

type t = [
  1. | `Page
  2. | `Popup
  3. | `Touch
  4. | `Wap
]
type error = [
  1. | `Invalid_display of string
]
val serialize : t -> string
val parse : string -> (t, [> error ]) Stdlib.result