list -> array

This commit is contained in:
Swrup 2024-01-30 16:55:19 +01:00
parent 3d19bc3f40
commit 16e5fe0b2e
9 changed files with 30 additions and 39 deletions

View file

@ -43,8 +43,8 @@ val opt_to_jv : opt -> Jv.t
(** [create ~content ~latlng options] is a new popup setup with [options],
position set to [latlng] and content to [s] *)
val create : content:string option -> latlng:Latlng.t option -> opt list -> t
val create : content:string option -> latlng:Latlng.t option -> opt array -> t
(** [create_from_el el latlng options] is a new popup setup with [options],
position set to [latlng] and content to [el] *)
val create_from_el : Brr.El.t -> latlng:Latlng.t option -> opt list -> t
val create_from_el : Brr.El.t -> latlng:Latlng.t option -> opt array -> t