package flow_parser

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type importKind =
  1. | ImportType
  2. | ImportTypeof
  3. | ImportValue
and (!'M, !'T) specifier =
  1. | ImportNamedSpecifiers of 'T named_specifier list
  2. | ImportNamespaceSpecifier of 'M * 'M Identifier.t
and !'T named_specifier = {
  1. kind : importKind option;
  2. local : 'T Identifier.t option;
  3. remote : 'T Identifier.t;
}
and (!'M, !'T) t = {
  1. importKind : importKind;
  2. source : 'M * StringLiteral.t;
  3. default : 'T Identifier.t option;
  4. specifiers : ('M, 'T) specifier option;
}
val show_importKind : importKind -> Ppx_deriving_runtime.string