Rocky_Mountain_Vending/.pnpm-store/v10/files/d2/bd9a67b9bc76c3710705bdef6d7ec22716d768c7c0dd5de9478d2a57fbb456c1cd0e7aeb0255f68aa2fa0528781bee06eb44fceb148ae5970e3965565d64f7
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

45 lines
No EOL
1.7 KiB
Text

export default DuplicatedJavascript;
export type ByteEfficiencyProduct = import("./byte-efficiency-audit.js").ByteEfficiencyProduct;
export type Item = LH.Audit.ByteEfficiencyItem & {
source: string;
subItems: {
type: "subitems";
items: SubItem[];
};
};
export type SubItem = {
url: string;
sourceTransferBytes?: number;
};
declare class DuplicatedJavascript extends ByteEfficiencyAudit {
/**
* @param {string} source
*/
static _getNodeModuleName(source: string): string;
/**
* @param {LH.Artifacts} artifacts
* @param {LH.Audit.Context} context
*/
static _getDuplicationGroupedByNodeModules(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise<Map<string, {
scriptId: string;
scriptUrl: string;
resourceSize: number;
}[]>>;
/**
* Each details item returned is a module with subItems for each resource that
* includes it. The wastedBytes for the details item is the number of bytes
* occupied by the sum of all but the largest copy of the module. wastedBytesByUrl
* attributes the cost of the bytes to a specific resource, for use by lantern.
* @param {LH.Artifacts} artifacts
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
* @param {LH.Audit.Context} context
* @return {Promise<ByteEfficiencyProduct>}
*/
static audit_(artifacts: LH.Artifacts, networkRecords: Array<LH.Artifacts.NetworkRequest>, context: LH.Audit.Context): Promise<ByteEfficiencyProduct>;
}
export namespace UIStrings {
let title: string;
let description: string;
}
import { ByteEfficiencyAudit } from './byte-efficiency-audit.js';
//# sourceMappingURL=duplicated-javascript.d.ts.map