@bitpatty/imgproxy-url-builder
Version:
A TypeScript helper library for building imgproxy URLs
10 lines (9 loc) • 329 B
TypeScript
/**
* Enlarges the image if it is smaller than the given size.
*
* See https://github.com/imgproxy/imgproxy/blob/6f292443eafb2e39f9252175b61faa6b38105a7c/docs/generating_the_url.md#enlarge for the imgproxy documentation
*
* @returns The enlarge param string
*/
declare const enlarge: () => string;
export default enlarge;