import type { IRawModelCard, IChipsItem } from '../../../types'; import { ThumbSize } from '../../constants/thumb-size'; /** Конвертирует массив карточек моделей в чипсы IChipsItem с иконкой превью. */ export function convertModelCardToChips( items: Array, ): Array { return items.map(item => ({ title: item.title, value: item.title, icon: item.video_thumb_urls?.webp[ThumbSize.Small], prefix: 'models', })); }