package styled-ppx

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

Module Css_AtomicTypes.BackgroundRepeat

type twoValue = [
  1. | `noRepeat
  2. | `repeat
  3. | `round
  4. | `space
]
type t = [
  1. | `noRepeat
  2. | `repeat
  3. | `repeatX
  4. | `repeatY
  5. | `round
  6. | `space
]
type horizontal = twoValue
type vertical = twoValue
val toString : t -> string