export default FileMapping; /** * Class containing a local file system source location and remote server destination location for a file. */ declare class FileMapping { /** * @param {LocalFileLocation} source * @param {RemoteFileLocation} destination */ constructor(source: LocalFileLocation, destination: RemoteFileLocation); /** * @type {LocalFileLocation} source */ source: LocalFileLocation; /** * @type {RemoteFileLocation} destination */ destination: RemoteFileLocation; } import LocalFileLocation from "./local-file-location.js"; import RemoteFileLocation from "./remote-file-location.js";