Rocky_Mountain_Vending/.pnpm-store/v10/files/1e/100b0e0a4fa6659c5db57deefeebf5e5e8cd26469e3ed80aff193cec9cfee6b5c227e5a5dc5fd25d12230ac92aed10d6f656bf2a922f48ea95d6950586e15c
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

39 lines
No EOL
1.4 KiB
Text

export default UnsizedImages;
declare class UnsizedImages extends Audit {
/**
* An img size attribute prevents layout shifts if it is a non-negative integer (incl zero!).
* @url https://html.spec.whatwg.org/multipage/embedded-content-other.html#dimension-attributes
* @param {string | null} attrValue
* @return {boolean}
*/
static doesHtmlAttrProvideExplicitSize(attrValue: string | null): boolean;
/**
* An img css size property prevents layout shifts if it is defined, not empty, and not equal to 'auto'.
* @param {string | null} property
* @return {boolean}
*/
static isCssPropExplicitlySet(property: string | null): boolean;
/**
* Images are considered sized if they have defined & valid values.
* @param {LH.Artifacts.ImageElement} image
* @return {boolean}
*/
static isSizedImage(image: LH.Artifacts.ImageElement): boolean;
/**
* @param {LH.Artifacts.ImageElement} image
* @return {boolean}
*/
static isNonNetworkSvg(image: LH.Artifacts.ImageElement): boolean;
/**
* @param {LH.Artifacts} artifacts
* @return {Promise<LH.Audit.Product>}
*/
static audit(artifacts: LH.Artifacts): Promise<LH.Audit.Product>;
}
export namespace UIStrings {
let title: string;
let failureTitle: string;
let description: string;
}
import { Audit } from './audit.js';
//# sourceMappingURL=unsized-images.d.ts.map