Files
est-frame/node_modules/@polka/url/index.d.ts
2025-10-22 05:38:27 +00:00

11 lines
234 B
TypeScript
Executable File

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;