import type { IRawCategoryCard, IChipsItem } from '../../../types'; /** Конвертирует массив категорий в чипсы IChipsItem для фильтров. */ export function convertCategoriesToChips( items: Array, prefix: string ): Array { return items?.map(item => ({ title: item.title, value: item.name, prefix: prefix, })); }