Spaces:
Sleeping
Sleeping
File size: 234 Bytes
be5030f |
1 2 3 4 5 6 7 8 9 10 11 |
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;
|