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>
30 lines
No EOL
1 KiB
Text
30 lines
No EOL
1 KiB
Text
export default ImageAspectRatio;
|
|
export type WellDefinedImage = Required<LH.Artifacts.ImageElement>;
|
|
/** @typedef {Required<LH.Artifacts.ImageElement>} WellDefinedImage */
|
|
declare class ImageAspectRatio extends Audit {
|
|
/**
|
|
* @param {WellDefinedImage} image
|
|
* @return {{url: string, node: LH.Audit.Details.NodeValue, displayedAspectRatio: string, actualAspectRatio: string, doRatiosMatch: boolean}}
|
|
*/
|
|
static computeAspectRatios(image: WellDefinedImage): {
|
|
url: string;
|
|
node: LH.Audit.Details.NodeValue;
|
|
displayedAspectRatio: string;
|
|
actualAspectRatio: string;
|
|
doRatiosMatch: boolean;
|
|
};
|
|
/**
|
|
* @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;
|
|
let columnDisplayed: string;
|
|
let columnActual: string;
|
|
}
|
|
import { Audit } from './audit.js';
|
|
//# sourceMappingURL=image-aspect-ratio.d.ts.map |