module_builder-8.x-3.x-dev/src/Entity/ComponentInterface.php
src/Entity/ComponentInterface.php
<?php
namespace Drupal\module_builder\Entity;
/**
* Interface for entities that represent a component to generate.
*/
interface ComponentInterface {
/**
* Gets the component type that should be passed to DCB.
*
* @return string
* The component type.
*/
public function getComponentType(): string;
}