package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module RestElement : sig ... end
type body =
  1. | BodyBlock of Loc.t * Statement.Block.t
  2. | BodyExpression of Expression.t
type t = {
  1. id : Identifier.t option;
  2. params : Pattern.t list * RestElement.t option;
  3. body : body;
  4. async : bool;
  5. generator : bool;
  6. predicate : Type.Predicate.t option;
  7. expression : bool;
  8. returnType : Type.annotation option;
  9. typeParameters : Type.ParameterDeclaration.t option;
}