Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/29c793c91a4e3aec75afc761042ce149f4be18631f5edd643685db277da37183906f2dd978fce2b258414c3b2bcee5cffe7f9c6a99bee61eec4cc3ceae6edf
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

36 lines
No EOL
836 B
Text

/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Logs messages via a UI butter.
*/
export class Logger {
/**
* @param {HTMLElement} element - expected to have id #lh-log
*/
constructor(element: HTMLElement);
el: HTMLElement;
_id: number | undefined;
/**
* Shows a butter bar.
* @param {string} msg The message to show.
* @param {boolean=} autoHide True to hide the message after a duration.
* Default is true.
*/
log(msg: string, autoHide?: boolean | undefined): void;
/**
* @param {string} msg
*/
warn(msg: string): void;
/**
* @param {string} msg
*/
error(msg: string): void;
/**
* Explicitly hides the butter bar.
*/
hide(): void;
}
//# sourceMappingURL=logger.d.ts.map