Module Expression.TSTypeCast

type kind('M, 'T) =
  1. | AsConst
  2. | Satisfies(Type.t('M, 'T))
;
type t('M, 'T) = {
  1. expression: Expression.t('M, 'T),
  2. kind: kind('M, 'T),
  3. comments: option(Syntax.t('M, unit)),
};