Rocky_Mountain_Vending/.pnpm-store/v10/files/5e/b1c00d4794e4952ef26a32bf23d32baef96f1466b42a703efe5e36ef253946ba0cecdb7e36ce4095d31b894339f64a0aacd4dab47bb34976b51bbc15a4fbf4
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

43 lines
No EOL
1.8 KiB
Text

/**
* @param {LH.Gatherer.ProtocolSession} session
* @param {LH.Config.Settings} settings
* @return {Promise<void>}
*/
export function emulate(session: LH.Gatherer.ProtocolSession, settings: LH.Config.Settings): Promise<void>;
/**
* Sets the throttling options specified in config settings, clearing existing network throttling if
* throttlingMethod is not `devtools` (but not CPU throttling, suspected requirement of WPT-compat).
*
* @param {LH.Gatherer.ProtocolSession} session
* @param {LH.Config.Settings} settings
* @return {Promise<void>}
*/
export function throttle(session: LH.Gatherer.ProtocolSession, settings: LH.Config.Settings): Promise<void>;
/**
* @param {LH.Gatherer.ProtocolSession} session
* @return {Promise<void>}
*/
export function clearThrottling(session: LH.Gatherer.ProtocolSession): Promise<void>;
/**
* @param {LH.Gatherer.ProtocolSession} session
* @param {Required<LH.ThrottlingSettings>} throttlingSettings
* @return {Promise<void>}
*/
export function enableNetworkThrottling(session: LH.Gatherer.ProtocolSession, throttlingSettings: Required<LH.ThrottlingSettings>): Promise<void>;
/**
* @param {LH.Gatherer.ProtocolSession} session
* @return {Promise<void>}
*/
export function clearNetworkThrottling(session: LH.Gatherer.ProtocolSession): Promise<void>;
/**
* @param {LH.Gatherer.ProtocolSession} session
* @param {Required<LH.ThrottlingSettings>} throttlingSettings
* @return {Promise<void>}
*/
export function enableCPUThrottling(session: LH.Gatherer.ProtocolSession, throttlingSettings: Required<LH.ThrottlingSettings>): Promise<void>;
/**
* @param {LH.Gatherer.ProtocolSession} session
* @return {Promise<void>}
*/
export function clearCPUThrottling(session: LH.Gatherer.ProtocolSession): Promise<void>;
//# sourceMappingURL=emulation.d.ts.map