Change record status: 
Project: 
Introduced in branch: 
10.2.x
Introduced in version: 
10.2.0
Description: 

ConfigEntityMapperInterface extends ConfigMapperInterface with the methods needed for ConfigEntityMapper so we can code against contracts.

With the following "definitions":

interface ConfigEntityMapperInterface extends ConfigMapperInterface {

  public function getEntity();

  public function setEntity(ConfigEntityInterface $entity);

  public function setType(string $entity_type_id): bool;

  public function getType(): string;

}
Impacts: 
Module developers