Rocky_Mountain_Vending/.pnpm-store/v10/files/cc/9e95c33d9e5827796171f9f5e2e08bc4cddbf6a653785a3d6eaeee5553f2645398741c383c66d91f5acfb55c64cf48d3f62cc979166304dfcbad4242a4c9cb
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

22 lines
631 B
Text

/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as LH from '../../types/lh.js';
import {makeComputedArtifact} from './computed-artifact.js';
import {NetworkRecorder} from '../lib/network-recorder.js';
class NetworkRecords {
/**
* @param {LH.DevtoolsLog} devtoolsLog
* @return {Promise<Array<LH.Artifacts.NetworkRequest>>} networkRecords
*/
static async compute_(devtoolsLog) {
return NetworkRecorder.recordsFromLogs(devtoolsLog);
}
}
const NetworkRecordsComputed = makeComputedArtifact(NetworkRecords, null);
export {NetworkRecordsComputed as NetworkRecords};