mirror of
https://github.com/saccas/mjml-typo3.git
synced 2024-11-15 12:16:10 +01:00
16 lines
287 B
PHP
16 lines
287 B
PHP
<?php
|
|
namespace Saccas\Mjml\Domain\Renderer;
|
|
|
|
/**
|
|
* Defines API of possible renderers.
|
|
*/
|
|
interface RendererInterface
|
|
{
|
|
/**
|
|
* Convert mjml strings into html.
|
|
*
|
|
* @param string $mjml
|
|
* @return string
|
|
*/
|
|
public function getHtmlFromMjml($mjml): string;
|
|
}
|