Rocky_Mountain_Vending/.pnpm-store/v10/files/db/e10e3718a028b8226898d3cc6236eb911b86040df8ae3078563c35ad457f3228b432fafa81a90f2dd70eb57ba4752706a5dfe97b2ae3c670e34a2b9e70ba19
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

58 lines
No EOL
1.2 KiB
Text

/**
* @license
* Copyright 2020 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* ConsoleMessage objects are dispatched by page via the 'console' event.
* @public
*/
export class ConsoleMessage {
#type;
#text;
#args;
#stackTraceLocations;
#frame;
/**
* @internal
*/
constructor(type, text, args, stackTraceLocations, frame) {
this.#type = type;
this.#text = text;
this.#args = args;
this.#stackTraceLocations = stackTraceLocations;
this.#frame = frame;
}
/**
* The type of the console message.
*/
type() {
return this.#type;
}
/**
* The text of the console message.
*/
text() {
return this.#text;
}
/**
* An array of arguments passed to the console.
*/
args() {
return this.#args;
}
/**
* The location of the console message.
*/
location() {
return (this.#stackTraceLocations[0] ??
(this.#frame ? { url: this.#frame.url() } : {}));
}
/**
* The array of locations on the stack of the console message.
*/
stackTrace() {
return this.#stackTraceLocations;
}
}
//# sourceMappingURL=ConsoleMessage.js.map