Files
klz-cables.com/.pnpm-store/v10/files/2c/a1a7317694c2f1e784d3d4928cedf33631742b92479dc05c5c139b0210525806201cd0db0a6fcbeacaa1d4bb4e27f0f670b54f1e94bf370b3bf3b9080f3f27
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

18 lines
610 B
Plaintext

export declare const ipHeaderNames: string[];
/**
* Get the IP address of the client sending a request.
*
* It receives a Request headers object and use it to get the
* IP address from one of the following headers in order.
*
* If the IP address is valid, it will be returned. Otherwise, null will be
* returned.
*
* If the header values contains more than one IP address, the first valid one
* will be returned.
*/
export declare function getClientIPAddress(headers: {
[key: string]: string | string[] | undefined;
}): string | null;
//# sourceMappingURL=getIpAddress.d.ts.map