wilddragon-site/node_modules/next/dist/lib/url.d.ts

6 lines
333 B
TypeScript
Raw Normal View History

2026-04-17 15:51:01 -04:00
import type { UrlWithParsedQuery } from 'url';
export declare function isFullStringUrl(url: string): boolean;
export declare function parseUrl(url: string): URL | undefined;
export declare function parseReqUrl(url: string): UrlWithParsedQuery | undefined;
export declare function stripNextRscUnionQuery(relativeUrl: string): string;