Rocky_Mountain_Vending/.pnpm-store/v10/files/51/aa51deb1173e4ac9d2dfe603c99de3002dcb5ef8175c8e69216810a21fa0c5ef14c6d39da2fab41b0a85a02e9ba4a5a05d80c18229d9b0fc8011156959671f
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

39 lines
No EOL
1.7 KiB
Text

export default FullPageScreenshot;
declare class FullPageScreenshot extends BaseGatherer {
/**
* @param {LH.Gatherer.Context} context
*/
waitForNetworkIdle(context: LH.Gatherer.Context): import("../driver/wait-for-condition.js").CancellableWait<void>;
/**
* @param {LH.Gatherer.Context} context
* @param {{height: number, width: number, mobile: boolean}} deviceMetrics
*/
_resizeViewport(context: LH.Gatherer.Context, deviceMetrics: {
height: number;
width: number;
mobile: boolean;
}): Promise<void>;
/**
* @param {LH.Gatherer.Context} context
* @return {Promise<LH.Result.FullPageScreenshot['screenshot']>}
*/
_takeScreenshot(context: LH.Gatherer.Context): Promise<LH.Result.FullPageScreenshot["screenshot"]>;
/**
* Gatherers can collect details about DOM nodes, including their position on the page.
* Layout shifts occuring after a gatherer runs can cause these positions to be incorrect,
* resulting in a poor experience for element screenshots.
* `getNodeDetails` maintains a collection of DOM objects in the page, which we can iterate
* to re-collect the bounding client rectangle.
* @see pageFunctions.getNodeDetails
* @param {LH.Gatherer.Context} context
* @return {Promise<LH.Result.FullPageScreenshot['nodes']>}
*/
_resolveNodes(context: LH.Gatherer.Context): Promise<LH.Result.FullPageScreenshot["nodes"]>;
/**
* @param {LH.Gatherer.Context} context
* @return {Promise<LH.Artifacts['FullPageScreenshot']>}
*/
getArtifact(context: LH.Gatherer.Context): Promise<LH.Artifacts["FullPageScreenshot"]>;
}
import BaseGatherer from '../base-gatherer.js';
//# sourceMappingURL=full-page-screenshot.d.ts.map