package flow_parser

  1. Overview
  2. Docs
module Function : sig ... end
module Object : sig ... end
module Generic : sig ... end
module StringLiteral : sig ... end
module NumberLiteral : sig ... end
module BooleanLiteral : sig ... end
type t = Loc.t * t'
and t' =
  1. | Any
  2. | Void
  3. | Null
  4. | Number
  5. | String
  6. | Boolean
  7. | Nullable of t
  8. | Function of Function.t
  9. | Object of Object.t
  10. | Array of t
  11. | Generic of Generic.t
  12. | Union of t list
  13. | Intersection of t list
  14. | Typeof of t
  15. | Tuple of t list
  16. | StringLiteral of StringLiteral.t
  17. | NumberLiteral of NumberLiteral.t
  18. | BooleanLiteral of BooleanLiteral.t
  19. | Exists
and annotation = Loc.t * t
module ParameterDeclaration : sig ... end
module ParameterInstantiation : sig ... end
module Predicate : sig ... end
OCaml

Innovation. Community. Security.