react-blurish-image
Version:
A lightweight, optimized React image component with blur placeholders and lazy loading
19 lines • 652 B
TypeScript
/**
* Module for handling image configuration settings
* @module config
*/
/**
* Configuration object for image settings
*/
/**
* Updates the global image configuration by merging the provided config with existing settings
* @param {ImageConfig} config - The configuration object to merge with existing settings
*/
/**
* Retrieves the current global image configuration
* @returns {ImageConfig} The current image configuration object
*/
import type { ImageConfig } from './types';
export declare const configureImage: (config: ImageConfig) => void;
export declare const getImageConfig: () => ImageConfig;
//# sourceMappingURL=config.d.ts.map