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

26 lines
1.4 KiB
Text

import * as Protocol from '../../../generated/protocol.js';
import type { SyntheticNetworkRequest } from '../types/TraceEvents.js';
export declare function isSyntheticNetworkRequestEventRenderBlocking(event: SyntheticNetworkRequest): boolean;
export declare function isSyntheticNetworkRequestHighPriority(event: SyntheticNetworkRequest): boolean;
export interface CacheControl {
'max-age'?: number;
'no-cache'?: boolean;
'no-store'?: boolean;
'must-revalidate'?: boolean;
'private'?: boolean;
}
export declare const CACHEABLE_STATUS_CODES: Set<number>;
/** @type {Set<LH.Crdp.Network.ResourceType>} */
export declare const STATIC_RESOURCE_TYPES: Set<Protocol.Network.ResourceType>;
export declare const NON_NETWORK_SCHEMES: string[];
/**
* Parses Cache-Control directives based on https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
* eg. 'no-cache, no-store, max-age=0, no-transform, private' will return
* {no-cache: true, no-store: true, max-age: 0, no-transform: true, private: true}
*/
export declare function parseCacheControl(header: string | null): CacheControl | null;
/**
* Is the host localhost-enough to satisfy the "secure context" definition
* https://github.com/GoogleChrome/lighthouse/pull/11766#discussion_r582340683
*/
export declare function isSyntheticNetworkRequestLocalhost(event: SyntheticNetworkRequest): boolean;