leaflet/src/point.mli

10 lines
122 B
OCaml
Raw Normal View History

2022-04-12 15:26:49 +02:00
(* BSD-2-Clause License *)
type t =
{ x : int
; y : int
}
(** [of_jv jv] is [jv] as {!t} *)
val of_jv : Jv.t -> t