UNPKG

dicom-microscopy-viewer-changed

Version:
11 lines (8 loc) 234 B
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;