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>
18 lines
No EOL
779 B
Text
18 lines
No EOL
779 B
Text
export default Stylesheets;
|
|
declare class Stylesheets extends BaseGatherer {
|
|
/** @type {LH.Gatherer.ProtocolSession|undefined} */
|
|
_session: LH.Gatherer.ProtocolSession | undefined;
|
|
/** @type {Map<string, Promise<LH.Artifacts.CSSStyleSheetInfo|null>>} */
|
|
_sheetPromises: Map<string, Promise<LH.Artifacts.CSSStyleSheetInfo | null>>;
|
|
/**
|
|
* @param {LH.Crdp.CSS.StyleSheetAddedEvent} event
|
|
*/
|
|
_onStylesheetAdded(event: LH.Crdp.CSS.StyleSheetAddedEvent): void;
|
|
/**
|
|
* @param {LH.Gatherer.Context} context
|
|
* @return {Promise<LH.Artifacts['Stylesheets']>}
|
|
*/
|
|
getArtifact(context: LH.Gatherer.Context): Promise<LH.Artifacts["Stylesheets"]>;
|
|
}
|
|
import BaseGatherer from '../base-gatherer.js';
|
|
//# sourceMappingURL=stylesheets.d.ts.map |