Sha256: 671a12163916f69a8f92e300b99103f3e8c13937de582b4bec18e51a590b2adc
Contents?: true
Size: 234 Bytes
Versions: 26
Compression:
Stored size: 234 Bytes
Contents
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;
Version data entries
26 entries across 26 versions & 1 rubygems