index.d.ts 374 字节
Newer Older
Lab机器人's avatar
readme  
Lab机器人 已提交
1 2 3 4 5 6 7 8 9 10 11 12
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;
	}

}