package styled-ppx

  1. Overview
  2. Docs
Type-safe styled components for ReScript and Melange

Install

dune-project
 Dependency

Authors

Maintainers

Sources

styled-ppx-0.61.0.tbz
sha256=c6eba770e9e9bb9002bf3f759f99ebcec6d7b4132c6c2ad562886c88b6839bab
sha512=8a1776181f6ef292518a0b96b1fae7927cf5767dee75dc04bc05d99d297866e45a5943455bea9ce500a04a635bd179d2b2bec8bccebc55dc1e696a23b3efad69

doc/styled-ppx.native/Css_types/EasingFunction/index.html

Module Css_types.EasingFunction

type t = [
  1. | `linear
  2. | `ease
  3. | `easeIn
  4. | `easeOut
  5. | `easeInOut
  6. | `stepStart
  7. | `stepEnd
  8. | `steps of int * [ `start | `end_ ]
  9. | `cubicBezier of float * float * float * float
  10. | `jumpStart
  11. | `jumpEnd
  12. | `jumpNone
  13. | `jumpBoth
]
val linear : [> `linear ]
val ease : [> `ease ]
val easeIn : [> `easeIn ]
val easeInOut : [> `easeInOut ]
val easeOut : [> `easeOut ]
val stepStart : [> `stepStart ]
val stepEnd : [> `stepEnd ]
val steps : int -> [ `end_ | `start ] -> [> `steps of int * [ `end_ | `start ] ]
val cubicBezier : float -> float -> float -> float -> [> `cubicBezier of float * float * float * float ]
val jumpStart : [> `jumpStart ]
val jumpEnd : [> `jumpEnd ]
val jumpNone : [> `jumpNone ]
val jumpBoth : [> `jumpBoth ]
val toString : [< `cubicBezier of float * float * float * float | `ease | `easeIn | `easeInOut | `easeOut | `jumpBoth | `jumpEnd | `jumpNone | `jumpStart | `linear | `stepEnd | `stepStart | `steps of int * [< `end_ | `start ] ] -> string