Rocky_Mountain_Vending/.pnpm-store/v10/files/69/d45edf5d7ca965e55ddc41efc8679db87910c25ee0716276e5c2563a5d9039fec3bc96e97c410346d63e864526405c759edbf1b7acf0e5ee6e995d0a07e8b6
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

31 lines
No EOL
1.1 KiB
Text

/**
* @license
* Copyright 2020 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { Protocol } from 'devtools-protocol';
import type { Frame } from '../api/Frame.js';
import { HTTPResponse, type RemoteAddress } from '../api/HTTPResponse.js';
import { SecurityDetails } from '../common/SecurityDetails.js';
import type { CdpHTTPRequest } from './HTTPRequest.js';
/**
* @internal
*/
export declare class CdpHTTPResponse extends HTTPResponse {
#private;
constructor(request: CdpHTTPRequest, responsePayload: Protocol.Network.Response, extraInfo: Protocol.Network.ResponseReceivedExtraInfoEvent | null);
_resolveBody(err?: Error): void;
remoteAddress(): RemoteAddress;
url(): string;
status(): number;
statusText(): string;
headers(): Record<string, string>;
securityDetails(): SecurityDetails | null;
timing(): Protocol.Network.ResourceTiming | null;
content(): Promise<Uint8Array>;
request(): CdpHTTPRequest;
fromCache(): boolean;
fromServiceWorker(): boolean;
frame(): Frame | null;
}
//# sourceMappingURL=HTTPResponse.d.ts.map