/** * Shared TypeScript interfaces for URL parsing and formatting. * Compatible with node:url types. */ export interface UrlWithParsedQuery { auth: string | null; hash: string | null; host: string | null; hostname: string | null; href: string; path: string | null; pathname: string | null; protocol: string | null; search: string | null; slashes: boolean | null; query: string | Record | null; port: string | null; } //# sourceMappingURL=url-types.d.ts.map