Rocky_Mountain_Vending/.pnpm-store/v10/files/15/9ab2c7518f673d506582367ddae1b6a6e409631b13e113fdf48e3125b71f64d466efeb43169b28d5c26d076add0900c1fbba466054d46909e2e491777576df
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

7 lines
673 B
Text

import type { NodeNextRequest, NodeNextResponse } from '../base-http/node';
import type { LoggingConfig } from '../config-shared';
/**
* Returns true if the incoming request should be ignored for logging.
*/
export declare function ignoreLoggingIncomingRequests(request: NodeNextRequest, loggingConfig: LoggingConfig | undefined): boolean;
export declare function logRequests(request: NodeNextRequest, response: NodeNextResponse, loggingConfig: LoggingConfig, requestStartTime: bigint, requestEndTime: bigint, devRequestTimingMiddlewareStart: bigint | undefined, devRequestTimingMiddlewareEnd: bigint | undefined, devRequestTimingInternalsEnd: bigint | undefined): void;