| Current Path : /var/www/homesaver/www/bitrix/js/landing/screenshoter/src/internal/ |
| Current File : /var/www/homesaver/www/bitrix/js/landing/screenshoter/src/internal/fetch-block-image-nodes.js |
export function fetchBlockImageNodes(block: BX.Landing.Block): Array<BX.Landing.Node.Img>
{
if (block)
{
return [...block.nodes.filter((node) => node.type === 'img')];
}
return [];
}