Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/307d8d4610f30275532d51e3de6236a04e0c093b6aa684b4a56579c9c33c704cff2599e66ea3564762c5a27a153dd7229e398af6562d0007782395515b67f0
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

24 lines
No EOL
892 B
Text

export default Trace;
declare class Trace extends BaseGatherer {
static getDefaultTraceCategories(): string[];
/**
* @param {LH.Gatherer.ProtocolSession} session
* @return {Promise<LH.Trace>}
*/
static endTraceAndCollectEvents(session: LH.Gatherer.ProtocolSession): Promise<LH.Trace>;
static symbol: symbol;
/** @type {LH.Trace} */
_trace: LH.Trace;
/**
* @param {LH.Gatherer.Context} passContext
*/
startSensitiveInstrumentation({ driver, gatherMode, settings }: LH.Gatherer.Context): Promise<void>;
/**
* @param {LH.Gatherer.Context} passContext
*/
stopSensitiveInstrumentation({ driver }: LH.Gatherer.Context): Promise<void>;
getDebugData(): import("../../index.js").Trace;
getArtifact(): import("../../index.js").Trace;
}
import BaseGatherer from '../base-gatherer.js';
//# sourceMappingURL=trace.d.ts.map