You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
374 B
12 lines
374 B
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; |
|
} |
|
|
|
}
|
|
|