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>
21 lines
No EOL
793 B
Text
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 |