Module Css_Value.Angle

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