package flow_parser

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