Rocky_Mountain_Vending/.pnpm-store/v10/files/73/18d61ecd551d80d25f66b291cac665e9ca4737db39a343350c074bbf842b8181aeb4da93e8774e52b08cb802a39bf6a6b7a2a7ff3849ae57caf2bb4495fd43
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

17 lines
No EOL
592 B
Text

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