Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 302 Bytes

File metadata and controls

19 lines (14 loc) · 302 Bytes

Flow AST Node Types

<X: number, +Y: { foo: string }>

TypeParameterDeclaration
  params: TypeParameter[]

TypeParameter
  name: string
  bound: TypeAnnotation
  variance: null | Variance

Variance
  kind: "plus" | "minus"

TypeAnnotation
  typeAnnotation: ObjectTypeAnnotation | ... | ...