gatsby_endpoints-8.x-1.0-alpha1/src/Plugin/GatsbyEndpointInterface.php
src/Plugin/GatsbyEndpointInterface.php
<?php
namespace Drupal\gatsby_endpoints\Plugin;
use Drupal\Component\Plugin\ConfigurableInterface;
use Drupal\Component\Plugin\PluginInspectionInterface;
use Drupal\Core\Plugin\PluginFormInterface;
/**
* Defines an interface for Gatsby endpoint plugins.
*/
interface GatsbyEndpointInterface extends ConfigurableInterface, PluginFormInterface, PluginInspectionInterface {
}
