namespace Automattic\WooCommerce\Blocks\Integrations;
* Integrations must use this interface when registering themselves with blocks,
interface IntegrationInterface {
* The name of the integration.
public function get_name();
* When called invokes any initialization/setup for the integration.
public function initialize();
* Returns an array of script handles to enqueue in the frontend context.
public function get_script_handles();
* Returns an array of script handles to enqueue in the editor context.
public function get_editor_script_handles();
* An array of key, value pairs of data made available to the block on the client side.
public function get_script_data();