Module Flow_ast.BigIntLiteral

type t('M) = {
  1. value: option(int64),
  2. raw: string,
  3. comments: option(Syntax.t('M, unit)),
};
let pp: (Format.formatter => 'M => unit) => Format.formatter => t('M) => unit;
let show: (Format.formatter => 'M => unit) => t('M) => string;