package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type property =
  1. | PropertyIdentifier of Identifier.t
  2. | PropertyExpression of Expression.t
type t = {
  1. _object : Expression.t;
  2. property : property;
  3. computed : bool;
}