package styled-ppx

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

Module Css_AtomicTypes.Time

type time = [
  1. | `s of int
  2. | `ms of int
]
type calc_value = [
  1. | time
  2. | `calc of [ time | `add of calc_value * calc_value | `sub of calc_value * calc_value | `mult of calc_value * calc_value ]
  3. | `min of t array
  4. | `max of t array
  5. | `num of float
]
and t = [
  1. | time
  2. | `min of t array
  3. | `max of t array
  4. | `calc of [ time | `add of calc_value * calc_value | `sub of calc_value * calc_value | `mult of calc_value * calc_value ]
]
val s : 'a -> [> `s of 'a ]
val ms : 'a -> [> `ms of 'a ]
val toString : t -> string