wishthis/node_modules/concat-with-sourcemaps/index.d.ts
2022-01-21 09:28:41 +01:00

12 lines
374 B
TypeScript

import { RawSourceMap } from "source-map";
declare module "concat-with-sourcemaps" {
export default class Concat {
constructor(generateSourceMap: boolean, fileName: string, separator?: string);
add(filePath: string | null, content: string | Buffer, sourceMap?: string | RawSourceMap): void;
readonly content: Buffer;
readonly sourceMap: string | undefined;
}
}