mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 17:29:31 +08:00
10 lines
234 B
Text
10 lines
234 B
Text
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;
|