/// import * as Vinyl from 'vinyl'; /** * Merges one or multiple files and applies the resulting sourcemap and contents to the target. * @param target - The file to merge the other files in. * @param files - The other files. */ export default function mergeWithSourcemaps(target: Vinyl, files: Array, options?: { /** If set to true this module will try to fix sourcemaps generated by gulp-sourcemaps. (default: false) */ fixGulpSourcemaps?: boolean; /** If set to true sourcemaps for files with .ts extension will also be fixed. (default: false) */ typescript?: boolean; }): Vinyl;