Module Flow_ast.Pattern

module RestElement: { ... };
module Object: { ... };
module Array: { ... };
module Identifier: { ... };
type t('M, 'T) = ('T, t'('M, 'T));
and t'('M, 'T) =
  1. | Object(Object.t('M, 'T))
  2. | Array(Array.t('M, 'T))
  3. | Identifier(Identifier.t('M, 'T))
  4. | Expression(Expression.t('M, 'T))
;
let pp: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => t('M, 'T) => unit;
let show: (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => t('M, 'T) => string;
let pp_t': (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => Format.formatter => t'('M, 'T) => unit;
let show_t': (Format.formatter => 'M => unit) => (Format.formatter => 'T => unit) => t'('M, 'T) => string;