Rocky_Mountain_Vending/.pnpm-store/v10/files/77/902fb75559f3813c7ea77bc14d84cc759bab8f275d700bf444d8ea27f84e642308543c4c95fcf0d53f99ce3348fe9eb69754fe3fc540074eeb8de44d6fdd7c
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

27 lines
No EOL
1.1 KiB
Text

export default InspectorIssues;
declare class InspectorIssues extends BaseGatherer {
/** @type {LH.Gatherer.GathererMeta<'DevtoolsLog'>} */
meta: LH.Gatherer.GathererMeta<"DevtoolsLog">;
/** @type {Array<LH.Crdp.Audits.InspectorIssue>} */
_issues: Array<LH.Crdp.Audits.InspectorIssue>;
_onIssueAdded: (entry: LH.Crdp.Audits.IssueAddedEvent) => void;
/**
* @param {LH.Crdp.Audits.IssueAddedEvent} entry
*/
onIssueAdded(entry: LH.Crdp.Audits.IssueAddedEvent): void;
/**
* @param {LH.Gatherer.Context} context
*/
startInstrumentation(context: LH.Gatherer.Context): Promise<void>;
/**
* @param {LH.Gatherer.Context} context
*/
stopInstrumentation(context: LH.Gatherer.Context): Promise<void>;
/**
* @param {LH.Gatherer.Context<'DevtoolsLog'>} context
* @return {Promise<LH.Artifacts.InspectorIssues>}
*/
getArtifact(context: LH.Gatherer.Context<"DevtoolsLog">): Promise<LH.Artifacts.InspectorIssues>;
}
import BaseGatherer from '../base-gatherer.js';
//# sourceMappingURL=inspector-issues.d.ts.map