Module Odometer

class type configuration = object ... end
class type odometer = object ... end
type configuraton = {
auto : bool option;
element : Js_of_ocaml.Dom_html.divElement Js_of_ocaml.Js.t;
value : int;
format : string option;
theme : string option;
animation : string option;
}
val from_config : configuraton -> unit
val odometer_with_config : configuraton -> odometer Js_of_ocaml.Js.t
val odometer : Js_of_ocaml.Dom_html.divElement Js_of_ocaml.Js.t -> odometer Js_of_ocaml.Js.t
val update : < update : 'a -> 'b Js_of_ocaml.Js.meth; .. > Js_of_ocaml.Js.t -> 'a -> 'b