Urara-Blog/node_modules/.pnpm-store/v3/files/17/ef8e3eb6064ba751fd5b4226c343f80b74f3561d1699fb10d2b520e4ae49a9c789d623cd82007f23da9316c293000d078982bfe08b00c266d8891617386d89
2022-08-14 01:14:53 +08:00

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;