Rocky_Mountain_Vending/.pnpm-store/v10/files/a0/b81fbe2514c6113ba99ec9f981c02db428d89d716a52643ee4cde75e7e3ca19eb0e1b5e5465c31aaa25e36032f9ab0b5e39de52f810c882d4c3b3b8d74609c
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

26 lines
No EOL
929 B
Text

export default Scripts;
/**
* @fileoverview Gets JavaScript file contents.
*/
declare class Scripts extends BaseGatherer {
static symbol: symbol;
/** @type {LH.Crdp.Debugger.ScriptParsedEvent[]} */
_scriptParsedEvents: LH.Crdp.Debugger.ScriptParsedEvent[];
/** @type {Array<string | undefined>} */
_scriptContents: Array<string | undefined>;
/**
* @param {LH.Crdp.Debugger.ScriptParsedEvent} params
*/
onScriptParsed(params: LH.Crdp.Debugger.ScriptParsedEvent): 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>;
getArtifact(): Promise<import("../../index.js").Artifacts.Script[]>;
}
import BaseGatherer from '../base-gatherer.js';
//# sourceMappingURL=scripts.d.ts.map