Files
ZERO_CODE/ZeroCodeProject/main/client/node_modules/@polka/url/index.d.ts
vermouth789 fe39320977 123
123
2026-01-11 00:11:34 +08:00

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;