18 lines
313 B
PHP
18 lines
313 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Sabberworm\CSS;
|
|
|
|
interface Renderable
|
|
{
|
|
public function render(OutputFormat $outputFormat): string;
|
|
|
|
/**
|
|
* @return array<string, bool|int|float|string|array<mixed>|null>
|
|
*
|
|
* @internal
|
|
*/
|
|
public function getArrayRepresentation(): array;
|
|
}
|