Sourceclass virtual 'a cell_ : ?classes:string list -> ?name:'b -> ?props:'c -> unit -> object ... end Sourceclass 'a label_cell : ?classes:string list -> ?name:string -> ?props:Props.t -> to_data:(
'a ->
string ->
Props.t ->
unit) -> of_data:('a ->
string * Props.t option) -> unit -> object ... end Sourceval string_cell :
?classes:string list ->
?name:string ->
?props:Props.t ->
?focusable:bool ->
('a -> string * Props.t option) ->
?to_data:('a -> string -> Props.t -> unit) ->
unit ->
'a cell Sourceval int_cell :
?classes:string list ->
?name:string ->
?props:Props.t ->
?focusable:bool ->
?to_data:('a -> int -> Props.t -> unit) ->
('a -> int * Props.t option) ->
unit ->
'a cell Sourceclass 'a text_cell : ?classes:string list -> ?name:string -> ?props:Props.t -> to_data:(
'a ->
(?start:int -> ?size:int -> ?stop:int -> unit -> string) ->
Props.t ->
unit) -> of_data:('a ->
string * Props.t option) -> unit -> object ... end Sourceval text_cell :
?classes:string list ->
?name:string ->
?props:Props.t ->
?to_data:
('a ->
(?start:int -> ?size:int -> ?stop:int -> unit -> string) ->
Props.t ->
unit) ->
('a -> string * Props.t option) ->
unit ->
'a cell Sourcetype sort_order = | Ascending| Descending