github-tui/lib/scroll.mli
Dmitrii Kovanikov 98b9b48d6f Add scroller
2024-06-22 18:11:10 +01:00

11 lines
181 B
OCaml

type t
type sections = {
before : int;
scroll : int;
after : int;
}
val make : height:int -> span:int -> lines:int -> offset:int -> t option
val to_sections : t -> sections