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>
23 lines
No EOL
1.1 KiB
Text
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 |