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>
19 lines
No EOL
575 B
Text
19 lines
No EOL
575 B
Text
export default RedirectsHTTP;
|
|
/**
|
|
* An audit for checking if a site starting on http redirects to https. The audit
|
|
* is marked not applicable if the requestedUrl is already https.
|
|
*/
|
|
declare class RedirectsHTTP extends Audit {
|
|
/**
|
|
* @param {LH.Artifacts} artifacts
|
|
* @return {LH.Audit.Product}
|
|
*/
|
|
static audit(artifacts: LH.Artifacts): LH.Audit.Product;
|
|
}
|
|
export namespace UIStrings {
|
|
let title: string;
|
|
let failureTitle: string;
|
|
let description: string;
|
|
}
|
|
import { Audit } from './audit.js';
|
|
//# sourceMappingURL=redirects-http.d.ts.map |