package geojsone

  1. Overview
  2. Docs
type location = (int * int) * (int * int)
type t = [
  1. | `Error of location * Jsone.error
  2. | `EOI
  3. | `Unexpected of string
]
val pp : Stdlib.Format.formatter -> t -> unit