Module TemplateLiteral.Element

type value = {
  1. raw : string;
  2. cooked : string;
}
and 'M t = 'M * t'
and t' = {
  1. value : value;
  2. tail : bool;
}
val pp_value : Format.formatter -> value -> unit
val show_value : value -> string
val pp : (Format.formatter -> 'M -> unit) -> Format.formatter -> 'M t -> unit
val show : (Format.formatter -> 'M -> unit) -> 'M t -> string
val pp_t' : Format.formatter -> t' -> unit
val show_t' : t' -> string