Rocky_Mountain_Vending/.pnpm-store/v10/files/15/8e638be64a466228e7c28f3df6129111c7aeea15a1a1560dca61269fb6dfaac5dc9ad831c727383cc7c3f0c632ae51f8ddb22f56b2b8c4e71d0fd04755f792
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

52 lines
No EOL
1.6 KiB
Text

export default DevtoolsLog;
declare class DevtoolsLog extends BaseGatherer {
static symbol: symbol;
_messageLog: DevtoolsMessageLog;
/** @param {LH.Protocol.RawEventMessage} e */
_onProtocolMessage: (e: LH.Protocol.RawEventMessage) => void;
/**
* @param {LH.Gatherer.Context} passContext
*/
startSensitiveInstrumentation({ driver }: LH.Gatherer.Context): Promise<void>;
/**
* @param {LH.Gatherer.Context} passContext
*/
stopSensitiveInstrumentation({ driver }: LH.Gatherer.Context): Promise<void>;
/**
* @return {LH.Artifacts['DevtoolsLog']}
*/
getDebugData(): LH.Artifacts["DevtoolsLog"];
/**
* @return {Promise<LH.Artifacts['DevtoolsLog']>}
*/
getArtifact(): Promise<LH.Artifacts["DevtoolsLog"]>;
}
/**
* This class saves all protocol messages whose method match a particular
* regex filter. Used when saving assets for later analysis by another tool such as
* Webpagetest.
*/
export class DevtoolsMessageLog {
/**
* @param {RegExp=} regexFilter
*/
constructor(regexFilter?: RegExp | undefined);
_filter: RegExp | undefined;
/** @type {LH.DevtoolsLog} */
_messages: LH.DevtoolsLog;
_isRecording: boolean;
/**
* @return {LH.DevtoolsLog}
*/
get messages(): LH.DevtoolsLog;
reset(): void;
beginRecording(): void;
endRecording(): void;
/**
* Records a message if method matches filter and recording has been started.
* @param {LH.Protocol.RawEventMessage} message
*/
record(message: LH.Protocol.RawEventMessage): void;
}
import BaseGatherer from '../base-gatherer.js';
//# sourceMappingURL=devtools-log.d.ts.map