package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type value =
  1. | Init of Type.t
  2. | Get of Loc.t * Function.t
  3. | Set of Loc.t * Function.t
type t' = {
  1. key : Expression.Object.Property.key;
  2. value : value;
  3. optional : bool;
  4. static : bool;
  5. _method : bool;
  6. variance : Variance.t option;
}
type t = Loc.t * t'