bpms_site/.svn/pristine/0c/0cf4d65d3818581f1a9630602a950db49632e164.svn-base
2025-11-02 16:38:49 +03:30

12 lines
370 B
Plaintext

/**
* A shared function, used on both client and server, to generate a SVG blur placeholder.
*/
export declare function getImageBlurSvg({ widthInt, heightInt, blurWidth, blurHeight, blurDataURL, objectFit, }: {
widthInt?: number;
heightInt?: number;
blurWidth?: number;
blurHeight?: number;
blurDataURL: string;
objectFit?: string;
}): string;