Rocky_Mountain_Vending/.pnpm-store/v10/files/f8/d61e57a0e9235b5fdcd3664d6bebc9adbe60da50706ef311d19ef215e56715317c1379d107b8e4a1ac9c2de3a0e63e0cb1dc4ed9fdae5518d520a0db49a254
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

28 lines
No EOL
1 KiB
Text

export default ThirdPartiesInsight;
export type URLSummary = {
transferSize: number;
mainThreadTime: number;
url: string | LH.IcuMessage;
};
/**
* @typedef URLSummary
* @property {number} transferSize
* @property {number} mainThreadTime
* @property {string | LH.IcuMessage} url
*/
declare class ThirdPartiesInsight extends Audit {
/**
* @param {LH.Artifacts.Entity} entity
* @param {import('@paulirish/trace_engine/models/trace/extras/ThirdParties.js').URLSummary[]} urlSummaries
* @return {URLSummary[]}
*/
static makeSubItems(entity: LH.Artifacts.Entity, urlSummaries: import("@paulirish/trace_engine/models/trace/extras/ThirdParties.js").URLSummary[]): URLSummary[];
/**
* @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>;
}
import { Audit } from '../audit.js';
//# sourceMappingURL=third-parties-insight.d.ts.map