Rocky_Mountain_Vending/.pnpm-store/v10/files/9c/416f708cd3a692908dbf985ee243fe29e65145b5c85c4ddc2739282705cea386700c08ef4978809183853dbc650e52e24296286afd02cf2019d3d8f4eafbf2
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

23 lines
No EOL
1.1 KiB
Text

export default ResponseCompression;
declare class ResponseCompression extends BaseGatherer {
/**
* @param {LH.Artifacts.NetworkRequest[]} networkRecords
* @return {LH.Artifacts['ResponseCompression']}
*/
static filterUnoptimizedResponses(networkRecords: LH.Artifacts.NetworkRequest[]): LH.Artifacts["ResponseCompression"];
/** @type {LH.Gatherer.GathererMeta<'DevtoolsLog'>} */
meta: LH.Gatherer.GathererMeta<"DevtoolsLog">;
/**
* @param {LH.Gatherer.Context} context
* @param {LH.Artifacts.NetworkRequest[]} networkRecords
* @return {Promise<LH.Artifacts['ResponseCompression']>}
*/
getCompressibleRecords(context: LH.Gatherer.Context, networkRecords: LH.Artifacts.NetworkRequest[]): Promise<LH.Artifacts["ResponseCompression"]>;
/**
* @param {LH.Gatherer.Context<'DevtoolsLog'>} context
* @return {Promise<LH.Artifacts['ResponseCompression']>}
*/
getArtifact(context: LH.Gatherer.Context<"DevtoolsLog">): Promise<LH.Artifacts["ResponseCompression"]>;
}
import BaseGatherer from '../../base-gatherer.js';
//# sourceMappingURL=response-compression.d.ts.map