Rocky_Mountain_Vending/.pnpm-store/v10/files/c6/b9c72f4509ada5f342f388de6f643d43ccd0c0504aad6cb437a2a97ca0e84d8e59e5fb63285b097416da3cdf2599ed0c8b9cea1b76b9d48b7e424e39fac4e9
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

21 lines
No EOL
793 B
Text

export type I18nFormatter = import("./i18n-formatter").I18nFormatter;
export class Globals {
/** @type {I18nFormatter} */
static i18n: I18nFormatter;
/** @type {typeof UIStrings} */
static strings: typeof UIStrings;
/** @type {LH.ReportResult | null} */
static reportJson: LH.ReportResult | null;
/**
* @param {{providedStrings: Record<string, string>; i18n: I18nFormatter; reportJson: LH.ReportResult | null}} options
*/
static apply(options: {
providedStrings: Record<string, string>;
i18n: I18nFormatter;
reportJson: LH.ReportResult | null;
}): void;
static getUniqueSuffix(): number;
static resetUniqueSuffix(): void;
}
import { UIStrings } from './report-utils.js';
//# sourceMappingURL=report-globals.d.ts.map