Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/17eecf675544f8dde3cf69cf4304be9c0876427e6f8fb9afcb8b462948d3d5c468b2d54691c1fe40c84a151f1e5027b0f2c2b44222a57f9538b31db0e386f4
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

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