A-New-Day-001's picture
Upload 1591 files
be5030f
raw
history blame contribute delete
234 Bytes
import type { IncomingMessage } from 'http';
export interface ParsedURL {
pathname: string;
search: string;
query: Record<string, string | string[]> | void;
raw: string;
}
export function parse(req: IncomingMessage): ParsedURL;