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>
13 lines
No EOL
590 B
Text
13 lines
No EOL
590 B
Text
export default TraceCompat;
|
|
/** @implements {LH.Gatherer.GathererInstance<'Trace'>} */
|
|
declare class TraceCompat extends BaseGatherer implements LH.Gatherer.GathererInstance<"Trace"> {
|
|
/** @type {LH.Gatherer.GathererMeta<'Trace'>} */
|
|
meta: LH.Gatherer.GathererMeta<"Trace">;
|
|
/**
|
|
* @param {LH.Gatherer.Context<'Trace'>} passContext
|
|
* @return {Promise<LH.Artifacts['traces']>}
|
|
*/
|
|
getArtifact(passContext: LH.Gatherer.Context<"Trace">): Promise<LH.Artifacts["traces"]>;
|
|
}
|
|
import BaseGatherer from '../base-gatherer.js';
|
|
//# sourceMappingURL=trace-compat.d.ts.map |