Rocky_Mountain_Vending/.pnpm-store/v10/files/51/7e47f19817fee3feaa99ea601f24760d69fd415051513428c5ac7750a610926ab0deb8b00cad0b596ad67d0961ae2a403ddd873791f093c8a5d5eceba857da
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.4 KiB
Text

export default UsesRelPreconnectAudit;
declare class UsesRelPreconnectAudit extends Audit {
/**
* Check if record has valid timing
* @param {LH.Artifacts.NetworkRequest} record
* @return {boolean}
*/
static hasValidTiming(record: LH.Artifacts.NetworkRequest): boolean;
/**
* Check is the connection is already open
* @param {LH.Artifacts.NetworkRequest} record
* @return {boolean}
*/
static hasAlreadyConnectedToOrigin(record: LH.Artifacts.NetworkRequest): boolean;
/**
* Check is the connection has started before the socket idle time
* @param {LH.Artifacts.NetworkRequest} record
* @param {LH.Artifacts.NetworkRequest} mainResource
* @return {boolean}
*/
static socketStartTimeIsBelowThreshold(record: LH.Artifacts.NetworkRequest, mainResource: LH.Artifacts.NetworkRequest): boolean;
/**
* @param {LH.Artifacts} artifacts
* @param {LH.Audit.Context} context
* @return {Promise<LH.Audit.Product>}
*/
static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<LH.Audit.Product>;
}
export namespace UIStrings {
let title: string;
let description: string;
let unusedWarning: string;
let crossoriginWarning: string;
let tooManyPreconnectLinksWarning: string;
}
import { Audit } from './audit.js';
//# sourceMappingURL=uses-rel-preconnect.d.ts.map