You are here

SearchApiElasticsearchBackendInterface.php in Elasticsearch Connector 8.7

File

src/Plugin/search_api/backend/SearchApiElasticsearchBackendInterface.php
View source
<?php

namespace Drupal\elasticsearch_connector\Plugin\search_api\backend;

use Drupal\search_api\Backend\BackendInterface;
interface SearchApiElasticsearchBackendInterface extends BackendInterface {

  /**
   * Get a list of supported data types.
   *
   * @return array
   *   Returns an array of strings representing supported data types.
   */
  public function getSupportedDataTypes();

}