Files
kulakpos_web/vendor/sabberworm/php-css-parser/src/Renderable.php

18 lines
313 B
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?php
declare(strict_types=1);
namespace Sabberworm\CSS;
interface Renderable
{
public function render(OutputFormat $outputFormat): string;
2026-04-18 20:32:18 +07:00
/**
* @return array<string, bool|int|float|string|array<mixed>|null>
*
* @internal
*/
public function getArrayRepresentation(): array;
2026-03-30 14:54:57 +07:00
}