Rocky_Mountain_Vending/.pnpm-store/v10/files/28/834cadff8955d26d7ab26395728e60188c85d32bcd05cba61e6f6c013194ee82ca2f67af79a94f12c662ea71f6c2425bf9a646446fcd2da4090366e452201c
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
581 B
Text

export { ScreenshotsComputed as Screenshots };
declare const ScreenshotsComputed: typeof Screenshots & {
request: (dependencies: import("../index.js").Trace, context: LH.Artifacts.ComputedContext) => Promise<{
timestamp: number;
datauri: string;
}[]>;
};
declare class Screenshots {
/**
* @param {LH.Trace} trace
* @return {Promise<Array<{timestamp: number, datauri: string}>>}
*/
static compute_(trace: LH.Trace): Promise<Array<{
timestamp: number;
datauri: string;
}>>;
}
//# sourceMappingURL=screenshots.d.ts.map