package cow

  1. Overview
  2. Docs
type elt =
  1. | Str of string
  2. | Fun of string * expr list
and expr = elt list
type prop_decl =
  1. | Prop of string * expr list
  2. | Decl of expr list * prop_decl list
type t =
  1. | Props of prop_decl list
  2. | Exprs of expr list
val to_string : t -> string
val expr : t -> expr
val exprs : t -> expr list
val props : t -> prop_decl list
val string : t -> string
val unroll : t -> t
val gradient : low:t -> high:t -> t
val top_rounded : t
val bottom_rounded : t
val rounded : t
val box_shadow : t
val text_shadow : t
val no_padding : t
val reset_padding : t