package flow_parser

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

Innovation. Community. Security.