/** * Browser-compatible implementation of node:url's parse and format functions. * Uses the native URL API available in both Node.js and browsers. * * This file re-exports from url-parse.ts and url-format.ts for convenience. */ export { parse } from './url-parse.js'; export { format } from './url-format.js'; export type { UrlWithParsedQuery } from './url-types.js'; //# sourceMappingURL=url.d.ts.map