Rocky_Mountain_Vending/.pnpm-store/v10/files/48/05e94d42578e456ca59059b6718fa612a63563887655d75a7bd8a23a36a634425031231426340aa8bee72c47ae0dc0c33a246323a30df1ce9b3acbc189cd3c
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

37 lines
No EOL
1.8 KiB
Text

export default BFCacheFailures;
declare class BFCacheFailures extends BaseGatherer {
/**
* @param {LH.Crdp.Page.BackForwardCacheNotRestoredExplanation[]} errorList
* @return {LH.Artifacts.BFCacheFailure}
*/
static processBFCacheEventList(errorList: LH.Crdp.Page.BackForwardCacheNotRestoredExplanation[]): LH.Artifacts.BFCacheFailure;
/**
* @param {LH.Crdp.Page.BackForwardCacheNotRestoredExplanationTree} errorTree
* @return {LH.Artifacts.BFCacheFailure}
*/
static processBFCacheEventTree(errorTree: LH.Crdp.Page.BackForwardCacheNotRestoredExplanationTree): LH.Artifacts.BFCacheFailure;
/**
* @param {LH.Crdp.Page.BackForwardCacheNotUsedEvent|undefined} event
* @return {LH.Artifacts.BFCacheFailure}
*/
static processBFCacheEvent(event: LH.Crdp.Page.BackForwardCacheNotUsedEvent | undefined): LH.Artifacts.BFCacheFailure;
/** @type {LH.Gatherer.GathererMeta<'DevtoolsLog'>} */
meta: LH.Gatherer.GathererMeta<"DevtoolsLog">;
/**
* @param {LH.Gatherer.Context} context
* @return {Promise<LH.Crdp.Page.BackForwardCacheNotUsedEvent|undefined>}
*/
activelyCollectBFCacheEvent(context: LH.Gatherer.Context): Promise<LH.Crdp.Page.BackForwardCacheNotUsedEvent | undefined>;
/**
* @param {LH.Gatherer.Context<'DevtoolsLog'>} context
* @return {LH.Crdp.Page.BackForwardCacheNotUsedEvent[]}
*/
passivelyCollectBFCacheEvents(context: LH.Gatherer.Context<"DevtoolsLog">): LH.Crdp.Page.BackForwardCacheNotUsedEvent[];
/**
* @param {LH.Gatherer.Context<'DevtoolsLog'>} context
* @return {Promise<LH.Artifacts['BFCacheFailures']>}
*/
getArtifact(context: LH.Gatherer.Context<"DevtoolsLog">): Promise<LH.Artifacts["BFCacheFailures"]>;
}
import BaseGatherer from '../base-gatherer.js';
//# sourceMappingURL=bf-cache-failures.d.ts.map