1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import type { Img, WPImage } from '../../../types'; export const convertWPImgToImg = ({ altText, mediaDetails, sourceUrl, title, }: WPImage): Img => { return { alt: altText ?? '', height: mediaDetails.height, src: sourceUrl, title: title ?? undefined, width: mediaDetails.width, }; };