import { PicMap } from '../types.js';
const getModal = (item) => {
if (item.playUrl) {
return PicMap.Video;
}
else {
if (!item.pictures.length) {
return PicMap.None;
}
else {
return item.pictures.length > 1 ? PicMap.Multiple : PicMap.Big;
}
}
};
export { getModal };