* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Product; use Symfony\Component\HttpFoundation\Response; /** * @deprecated since 8.1 and will be removed in next major. * * Allow the export of a list of products. */ interface ProductExporterInterface { /** * @param array $products * * @return Response */ public function export(array $products); }