Rocky_Mountain_Vending/.pnpm-store/v10/files/96/866a4f9dfe5660013c72cf30fc488c877c866c52236054901d8788dbc9075be130b6e8e223c27dd67de27d3a5e2c0f015cfbe060498cb112f6f1929c0ab53f
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

71 lines
No EOL
2.3 KiB
Text

/**
* @license
* Copyright 2020 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { Protocol } from 'devtools-protocol';
import type { CDPSession } from '../api/CDPSession.js';
import type { Frame } from '../api/Frame.js';
import { type ContinueRequestOverrides, HTTPRequest, type ResourceType, type ResponseForRequest } from '../api/HTTPRequest.js';
import type { CdpHTTPResponse } from './HTTPResponse.js';
/**
* @internal
*/
export declare class CdpHTTPRequest extends HTTPRequest {
#private;
id: string;
_redirectChain: CdpHTTPRequest[];
_response: CdpHTTPResponse | null;
get client(): CDPSession;
set client(newClient: CDPSession);
constructor(client: CDPSession, frame: Frame | null, interceptionId: string | undefined, allowInterception: boolean, data: {
/**
* Request identifier.
*/
requestId: Protocol.Network.RequestId;
/**
* Loader identifier. Empty string if the request is fetched from worker.
*/
loaderId?: Protocol.Network.LoaderId;
/**
* URL of the document this request is loaded for.
*/
documentURL?: string;
/**
* Request data.
*/
request: Protocol.Network.Request;
/**
* Request initiator.
*/
initiator?: Protocol.Network.Initiator;
/**
* Type of this resource.
*/
type?: Protocol.Network.ResourceType;
}, redirectChain: CdpHTTPRequest[]);
updateHeaders(headers: Protocol.Network.Headers): void;
url(): string;
resourceType(): ResourceType;
method(): string;
postData(): string | undefined;
hasPostData(): boolean;
fetchPostData(): Promise<string | undefined>;
headers(): Record<string, string>;
response(): CdpHTTPResponse | null;
frame(): Frame | null;
isNavigationRequest(): boolean;
initiator(): Protocol.Network.Initiator | undefined;
redirectChain(): CdpHTTPRequest[];
failure(): {
errorText: string;
} | null;
protected canBeIntercepted(): boolean;
/**
* @internal
*/
_continue(overrides?: ContinueRequestOverrides): Promise<void>;
_respond(response: Partial<ResponseForRequest>): Promise<void>;
_abort(errorReason: Protocol.Network.ErrorReason | null): Promise<void>;
}
//# sourceMappingURL=HTTPRequest.d.ts.map