first commit
This commit is contained in:
11
app_vue/node_modules/@polka/url/index.d.ts
generated
vendored
Normal file
11
app_vue/node_modules/@polka/url/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import type { IncomingMessage } from 'http';
|
||||
|
||||
export interface ParsedURL {
|
||||
pathname: string;
|
||||
search: string;
|
||||
query: Record<string, string | string[]> | undefined;
|
||||
hash: string | undefined;
|
||||
raw: string;
|
||||
}
|
||||
|
||||
export function parse(req: IncomingMessage): ParsedURL;
|
Reference in New Issue
Block a user