Rocky_Mountain_Vending/.pnpm-store/v10/files/74/5c4920537eb88f0463c7833a93ad154f668346e0c909920fa5c30553b0ff0eb9815d7683eac0ec6df8d90ffd90a12969911cdb84eae60bcfe11292ac75cb01
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

80 lines
No EOL
1.7 KiB
Text

/**
* @license
* Copyright 2018 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* The base class for all Puppeteer-specific errors
*
* @public
*/
export declare class PuppeteerError extends Error {
/**
* @internal
*/
constructor(message?: string, options?: ErrorOptions);
/**
* @internal
*/
get [Symbol.toStringTag](): string;
}
/**
* TimeoutError is emitted whenever certain operations are terminated due to
* timeout.
*
* @remarks
* Example operations are {@link Page.waitForSelector | page.waitForSelector} or
* {@link PuppeteerNode.launch | puppeteer.launch}.
*
* @public
*/
export declare class TimeoutError extends PuppeteerError {
}
/**
* TouchError is thrown when an attempt is made to move or end a touch that does
* not exist.
* @public
*/
export declare class TouchError extends PuppeteerError {
}
/**
* ProtocolError is emitted whenever there is an error from the protocol.
*
* @public
*/
export declare class ProtocolError extends PuppeteerError {
#private;
set code(code: number | undefined);
/**
* @readonly
* @public
*/
get code(): number | undefined;
set originalMessage(originalMessage: string);
/**
* @readonly
* @public
*/
get originalMessage(): string;
}
/**
* Puppeteer will throw this error if a method is not
* supported by the currently used protocol
*
* @public
*/
export declare class UnsupportedOperation extends PuppeteerError {
}
/**
* @internal
*/
export declare class TargetCloseError extends ProtocolError {
}
/**
* Thrown if underlying protocol connection has been closed.
*
* @public
*/
export declare class ConnectionClosedError extends ProtocolError {
}
//# sourceMappingURL=Errors.d.ts.map