this repo has no description
at main 29 lines 428 B view raw
1module Widget : sig 2 type t 3 4 include Jv.CONV with type t := t 5 6 val make : (unit -> Brr.El.t) -> t 7end 8 9type t 10 11include Jv.CONV with type t := t 12 13val widget : ?block:bool -> ?side:int -> Widget.t -> t 14 15module Range : sig 16 type t 17 18 include Jv.CONV with type t := t 19end 20 21val range : from:int -> to_:int -> t -> Range.t 22 23module Range_set : sig 24 type t 25 26 include Jv.CONV with type t := t 27 28 val of' : Range.t array -> t 29end