package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Method : sig ... end
module Property : sig ... end
module Implements : sig ... end
module Body : sig ... end
type t = {
  1. id : Identifier.t option;
  2. body : Body.t;
  3. superClass : Expression.t option;
  4. typeParameters : Type.ParameterDeclaration.t option;
  5. superTypeParameters : Type.ParameterInstantiation.t option;
  6. implements : Implements.t list;
  7. classDecorators : Expression.t list;
}