Rocky_Mountain_Vending/.pnpm-store/v10/files/8c/015c322538b7160a5f28c6336c1711979f5427e6bb0aadb5411fa20a4d424982c5b49108a0d7b638808bac4f4b0d8bd0b31d837aa8308271581d9573b4c58b
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

27 lines
No EOL
915 B
Text

export default SpeedIndex;
declare class SpeedIndex extends Audit {
/**
* @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}}
*/
static get defaultOptions(): {
mobile: {
scoring: LH.Audit.ScoreOptions;
};
desktop: {
scoring: LH.Audit.ScoreOptions;
};
};
/**
* Audits the page to give a score for the Speed Index.
* @see https://github.com/GoogleChrome/lighthouse/issues/197
* @param {LH.Artifacts} artifacts The artifacts from the gather phase.
* @param {LH.Audit.Context} context
* @return {Promise<LH.Audit.Product>}
*/
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
}
export namespace UIStrings {
let description: string;
}
import { Audit } from '../audit.js';
//# sourceMappingURL=speed-index.d.ts.map