mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
13 lines
374 B
TypeScript
13 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;
|
|
}
|
|
|
|
}
|