mirror of
https://github.com/saccas/mjml-typo3.git
synced 2024-11-14 18:36:09 +01:00
17 lines
279 B
PHP
17 lines
279 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);
|
||
|
}
|