leaflet/src/point.mli
2022-06-15 17:17:35 +02:00

9 lines
122 B
OCaml

(* BSD-2-Clause License *)
type t =
{ x : int
; y : int
}
(** [of_jv jv] is [jv] as {!t} *)
val of_jv : Jv.t -> t