Rocky_Mountain_Vending/.pnpm-store/v10/files/f4/3f9643333e80a6d9434cce897698d15c9bcca83f7ec3db14fe8ad77c15ccaa4f8afbd50e6d3d8f1c101f33c2215d6b28e35d88f017a7cdbc66a8b8e34409ee
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

32 lines
No EOL
1.1 KiB
Text

export default TotalBlockingTime;
declare class TotalBlockingTime 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 calculate Total Blocking Time.
*
* We define Blocking Time as any time interval in the loading timeline where task length exceeds
* 50ms. For example, if there is a 110ms main thread task, the last 60ms of it is blocking time.
* Total Blocking Time is the sum of all Blocking Time between First Contentful Paint and
* Interactive Time (TTI).
*
* @param {LH.Artifacts} artifacts
* @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=total-blocking-time.d.ts.map