Sourcemaps.Source_maps
type range = {
start : Location.t;
end_ : Location.t option;
}
module Location : sig ... end
type mapping = {
gen : range;
src : range;
source : string;
name : string option;
A source file to generated file mapping
type t = {
mappings : string;
sourceRoot : string;
sources : string list;
sourcesContent : string option list;
names : string list;
version : int;
file : string;
include Ppx_yojson_conv_lib.Yojsonable.S with type t := t
val t_of_yojson : Yojson.Safe.t -> t
val yojson_of_t : t -> Yojson.Safe.t
val mk : ?file:string -> ?sourceRoot:string -> ?sourcesContent:(string -> string option) -> mapping list -> t
val to_json : t -> string