Module Flow_ast.ModuleRefLiteral

type t('M, 'T) = {
  1. value: string,
  2. require_loc: 'M,
  3. def_loc_opt: option('M),
  4. prefix_len: int,
  5. raw: string,
  6. comments: option(Syntax.t('M, unit)),
};
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;