11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
|
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;
|