astro-ghostcms/.pnpm-store/v3/files/17/ef8e3eb6064ba751fd5b4226c34...

11 lines
234 B
Plaintext

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;