Module Css_Value.Time

type t = [
| Css_Unit.Time.t
| `num of float
| `add of t * t
| `subtract of t * t
| `multiply of t * t
| `divide of t * t
]
val show : t -> string