first
This commit is contained in:
10
node_modules/@polka/url/index.d.ts
generated
vendored
Normal file
10
node_modules/@polka/url/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
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;
|
Reference in New Issue
Block a user