export default RemoteFileLocation; declare class RemoteFileLocation { /** * @param {string} filePathname pathname for file relative to package root eg. /folder/client.js * @param {string} packagePathname pathname for package root eg. /pkg/my-pack/1.0.0 * @param {string} origin server origin eg. https://server.com */ constructor(filePathname: string, packagePathname: string, origin: string); /** * @type {string} pathname to package root */ packagePathname: string; /** * @type {string} pathname to file relative to package root */ filePathname: string; /** * @type {URL} WHATWG URL object containing the full remote URL for the file */ url: URL; }