Initial project upload

This commit is contained in:
Mohamed Mathar Irfan
2026-07-28 17:57:02 +05:30
commit ed6610d5d8
23919 changed files with 3003316 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
/// <reference types="node" />
import type { IncomingHttpHeaders } from 'http';
import type { NextParsedUrlQuery } from './request-meta';
export declare function stripInternalQueries(query: NextParsedUrlQuery): void;
export declare function stripInternalSearchParams<T extends string | URL>(url: T, isEdge: boolean): T;
/**
* Strip internal headers from the request headers.
*
* @param headers the headers to strip of internal headers
*/
export declare function stripInternalHeaders(headers: IncomingHttpHeaders): void;