blob: 9b27c042e4689444de12b45c6486ce8ae50f41d3 [file] [log] [blame]
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;