Rocky_Mountain_Vending/.pnpm-store/v10/files/95/da4f2c14f4725ccd9bf18d62c231286b8e320be49d3530f349f0f42e33fe427f838f67a59660612b35a75eb8a198adefd9c0effc839553c262f5bc26027f83
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

51 lines
No EOL
2 KiB
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import * as Bidi from 'webdriver-bidi-protocol';
import { EventEmitter } from '../../common/EventEmitter.js';
import { disposeSymbol } from '../../util/disposable.js';
import type { BrowsingContext } from './BrowsingContext.js';
/**
* @internal
*/
export declare class Request extends EventEmitter<{
/** Emitted when the request is redirected. */
redirect: Request;
/** Emitted when the request succeeds. */
authenticate: void;
/** Emitted when the request succeeds. */
success: Bidi.Network.ResponseData;
/** Emitted when the request fails. */
error: string;
}> {
#private;
static from(browsingContext: BrowsingContext, event: Bidi.Network.BeforeRequestSentParameters): Request;
private constructor();
get disposed(): boolean;
get error(): string | undefined;
get headers(): Bidi.Network.Header[];
get id(): string;
get initiator(): Bidi.Network.Initiator | undefined;
get method(): string;
get navigation(): string | undefined;
get redirect(): Request | undefined;
get lastRedirect(): Request | undefined;
get response(): Bidi.Network.ResponseData | undefined;
get url(): string;
get isBlocked(): boolean;
get resourceType(): string | undefined;
get postData(): string | undefined;
get hasPostData(): boolean;
continueRequest({ url, method, headers, cookies, body, }: Omit<Bidi.Network.ContinueRequestParameters, 'request'>): Promise<void>;
failRequest(): Promise<void>;
provideResponse({ statusCode, reasonPhrase, headers, body, }: Omit<Bidi.Network.ProvideResponseParameters, 'request'>): Promise<void>;
fetchPostData(): Promise<string | undefined>;
getResponseContent(): Promise<Uint8Array>;
continueWithAuth(parameters: Bidi.Network.ContinueWithAuthCredentials | Bidi.Network.ContinueWithAuthNoCredentials): Promise<void>;
private dispose;
[disposeSymbol](): void;
timing(): Bidi.Network.FetchTimingInfo;
}
//# sourceMappingURL=Request.d.ts.map