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>
22 lines
No EOL
694 B
Text
22 lines
No EOL
694 B
Text
export default JsUsage;
|
|
/**
|
|
* @fileoverview Tracks unused JavaScript
|
|
*/
|
|
declare class JsUsage extends BaseGatherer {
|
|
/** @type {LH.Crdp.Profiler.ScriptCoverage[]} */
|
|
_scriptUsages: LH.Crdp.Profiler.ScriptCoverage[];
|
|
/**
|
|
* @param {LH.Gatherer.Context} context
|
|
*/
|
|
startInstrumentation(context: LH.Gatherer.Context): Promise<void>;
|
|
/**
|
|
* @param {LH.Gatherer.Context} context
|
|
*/
|
|
stopInstrumentation(context: LH.Gatherer.Context): Promise<void>;
|
|
/**
|
|
* @return {Promise<LH.Artifacts['JsUsage']>}
|
|
*/
|
|
getArtifact(): Promise<LH.Artifacts["JsUsage"]>;
|
|
}
|
|
import BaseGatherer from '../base-gatherer.js';
|
|
//# sourceMappingURL=js-usage.d.ts.map |