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.css-spec-parser/Css_spec_parser/index.html

Module Css_spec_parser

type multiplier =
  1. | One
  2. | Zero_or_more
  3. | One_or_more
  4. | Optional
  5. | Repeat of int * int option
  6. | Repeat_by_comma of int * int option
  7. | At_least_one
val show_multiplier : multiplier -> Ppx_deriving_runtime.string
type terminal =
  1. | Delim of string
  2. | Keyword of string
  3. | Data_type of string
  4. | Property_type of string
val show_terminal : terminal -> Ppx_deriving_runtime.string
type combinator =
  1. | Static
  2. | And
  3. | Or
  4. | Xor
val show_combinator : combinator -> Ppx_deriving_runtime.string
type value =
  1. | Terminal of terminal * multiplier
  2. | Combinator of combinator * value list
  3. | Group of value * multiplier
  4. | Function_call of string * value
val string_of_value : Css_spec_parser__.Ast.value -> string
val value_of_string : string -> Css_spec_parser__.Ast.value option