Rocky_Mountain_Vending/.pnpm-store/v10/files/5b/9c90faadfaa86a55e0b31281a62b8546c3c4adc72ac6e2cf31549e7345c8092e74cf9d849178e1a22561024469bd739723fac48d446adf96be9b806e9f4ff5
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

36 lines
No EOL
1.3 KiB
Text

export default UnminifiedCSS;
/**
* @fileOverview
*/
declare class UnminifiedCSS extends ByteEfficiencyAudit {
/**
* Computes the total length of the meaningful tokens (CSS excluding comments and whitespace).
*
* @param {string} content
* @return {number}
*/
static computeTokenLength(content: string): number;
/**
* @param {LH.Artifacts.CSSStyleSheetInfo} stylesheet
* @param {LH.Artifacts.NetworkRequest|undefined} networkRecord
* @return {{url: string, totalBytes: number, wastedBytes: number, wastedPercent: number}}
*/
static computeWaste(stylesheet: LH.Artifacts.CSSStyleSheetInfo, networkRecord: LH.Artifacts.NetworkRequest | undefined): {
url: string;
totalBytes: number;
wastedBytes: number;
wastedPercent: number;
};
/**
* @param {LH.Artifacts} artifacts
* @param {Array<LH.Artifacts.NetworkRequest>} networkRecords
* @return {import('./byte-efficiency-audit.js').ByteEfficiencyProduct}
*/
static audit_(artifacts: LH.Artifacts, networkRecords: Array<LH.Artifacts.NetworkRequest>): import("./byte-efficiency-audit.js").ByteEfficiencyProduct;
}
export namespace UIStrings {
let title: string;
let description: string;
}
import { ByteEfficiencyAudit } from './byte-efficiency-audit.js';
//# sourceMappingURL=unminified-css.d.ts.map