11 lines
149 B
PHP
11 lines
149 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Sabberworm\CSS;
|
||
|
|
|
||
|
|
interface Renderable
|
||
|
|
{
|
||
|
|
public function render(OutputFormat $outputFormat): string;
|
||
|
|
}
|