Rocky_Mountain_Vending/.pnpm-store/v10/files/be/80696a48a68eea24f7267a31219d353e43900d59e910a5cb5218403d6391647cc4e58a49a531c24d0a70a253ccc60a500494c39b3926cad2d288439a01aea1
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

25 lines
No EOL
979 B
Text

export default PreloadFontsAudit;
declare class PreloadFontsAudit extends Audit {
/**
* Finds which font URLs were attempted to be preloaded,
* ignoring those that failed to be reused and were requested again.
* Note: document.fonts.load() is a valid way to preload fonts,
* but we are not currently checking for that.
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
* @return {Set<string>}
*/
static getURLsAttemptedToPreload(networkRecords: Array<LH.Artifacts.NetworkRequest>): Set<string>;
/**
* @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 failureTitle: string;
let description: string;
}
import { Audit } from './audit.js';
//# sourceMappingURL=preload-fonts.d.ts.map