Files
vercel_dashboard_example/.pnpm-store/v11/files/9f/1ed6644e2cf59976d4bbc3c10804bc6d0f8d14aa55bcf7340120c936751830be2a0b995232aec9dcd6c57201c763bc0f31475c0a86324ace578d9ba0f85458
T
2026-05-12 14:53:15 +00:00

9 lines
442 B
Plaintext

import type { NextConfig } from '../../server/config-shared';
/**
* Find the closest matching `quality` in the list of `config.qualities`
* @param quality the quality prop passed to the image component
* @param config the "images" configuration from next.config.js
* @returns the closest matching quality value
*/
export declare function findClosestQuality(quality: number | undefined, config: NextConfig['images'] | undefined): number;