Your IP : 127.0.0.1
<?php
/**
* @author Amasty Team
* @copyright Copyright (c) Amasty (https://www.amasty.com)
* @package Export Core for Magento 2 (System)
*/
namespace Amasty\ExportCore\Api;
use Amasty\ExportCore\Api\Config\EntityConfigInterface;
use Amasty\ExportCore\Api\Config\ProfileConfigInterface;
use Magento\Framework\App\RequestInterface;
interface FormInterface
{
public function getMeta(EntityConfigInterface $entityConfig, array $arguments = []): array;
public function getData(ProfileConfigInterface $profileConfig): array;
public function prepareConfig(ProfileConfigInterface $profileConfig, RequestInterface $request): FormInterface;
}