Rocky_Mountain_Vending/.pnpm-store/v10/files/71/514e705ceedd19ae2e1747c94c7de946fb650c5510ce7b33d6fa88a15c09427fb7e9f53eebd95cfc865db65e3c1a21e8e066e05623b7a23e15b75d2a449e36
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

41 lines
No EOL
1.6 KiB
Text

export namespace UIStrings {
let warningSlowHostCpu: string;
}
/**
* @param {LH.Gatherer.ProtocolSession} session
* @return {Promise<LH.Crdp.Browser.GetVersionResponse & {milestone: number}>}
*/
export function getBrowserVersion(session: LH.Gatherer.ProtocolSession): Promise<LH.Crdp.Browser.GetVersionResponse & {
milestone: number;
}>;
/**
* Computes the benchmark index to get a rough estimate of device class.
* @param {LH.Gatherer.Driver['executionContext']} executionContext
* @return {Promise<number>}
*/
export function getBenchmarkIndex(executionContext: LH.Gatherer.Driver["executionContext"]): Promise<number>;
/**
* Computes the observed DPR.
* @param {LH.Gatherer.Driver['executionContext']} executionContext
* @return {Promise<number>}
*/
export function getDevicePixelRatio(executionContext: LH.Gatherer.Driver["executionContext"]): Promise<number>;
/**
* Returns a warning if the host device appeared to be underpowered according to BenchmarkIndex.
*
* @param {{settings: LH.Config.Settings; baseArtifacts: Pick<LH.Artifacts, 'BenchmarkIndex'>}} context
* @return {LH.IcuMessage | undefined}
*/
export function getSlowHostCpuWarning(context: {
settings: LH.Config.Settings;
baseArtifacts: Pick<LH.Artifacts, "BenchmarkIndex">;
}): LH.IcuMessage | undefined;
/**
* @param {{settings: LH.Config.Settings, baseArtifacts: Pick<LH.Artifacts, 'BenchmarkIndex'>}} context
* @return {Array<LH.IcuMessage>}
*/
export function getEnvironmentWarnings(context: {
settings: LH.Config.Settings;
baseArtifacts: Pick<LH.Artifacts, "BenchmarkIndex">;
}): Array<LH.IcuMessage>;
//# sourceMappingURL=environment.d.ts.map