package styled-ppx

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Css_AtomicTypes.Angle

type t = [
  1. | `deg of float
  2. | `grad of float
  3. | `rad of float
  4. | `turn of float
]
val deg : float -> [> `deg of float ]
val rad : float -> [> `rad of float ]
val grad : float -> [> `grad of float ]
val turn : float -> [> `turn of float ]
val toString : t -> string