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>
22 lines
No EOL
733 B
Text
22 lines
No EOL
733 B
Text
export default ServerResponseTime;
|
|
declare class ServerResponseTime extends Audit {
|
|
/**
|
|
* @param {LH.Artifacts.NetworkRequest} record
|
|
* @return {number|null}
|
|
*/
|
|
static calculateResponseTime(record: LH.Artifacts.NetworkRequest): number | null;
|
|
/**
|
|
* @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;
|
|
let displayValue: string;
|
|
}
|
|
import { Audit } from './audit.js';
|
|
//# sourceMappingURL=server-response-time.d.ts.map |