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>
26 lines
No EOL
929 B
Text
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 |