package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type declaration =
  1. | Variable of Loc.t * DeclareVariable.t
  2. | Function of Loc.t * DeclareFunction.t
  3. | Class of Loc.t * Interface.t
  4. | DefaultType of Type.t
  5. | NamedType of Loc.t * TypeAlias.t
  6. | Interface of Loc.t * Interface.t
type t = {
  1. default : bool;
  2. declaration : declaration option;
  3. specifiers : ExportNamedDeclaration.specifier option;
  4. source : (Loc.t * Literal.t) option;
}