# woocommerce-pos/1.10.19/vendor_prefixed/sabberworm/php-css-parser/src/Renderable.php

WCPOS – Point of Sale (POS) plugin for WooCommerce, version 1.10.19. 16 lines.

- Page: https://pluginprobe.com/plugins/woocommerce-pos/1.10.19/code/vendor_prefixed/sabberworm/php-css-parser/src/Renderable.php
- Raw: https://pluginprobe.com/plugins/woocommerce-pos/1.10.19/raw/vendor_prefixed/sabberworm/php-css-parser/src/Renderable.php
- Modified: 2026-06-09T13:55:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woocommerce-pos/1.10.19/code/vendor_prefixed/sabberworm/php-css-parser/src/Renderable.php#L10-L20`.

```php
<?php

declare (strict_types=1);
namespace WCPOS\Vendor\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;
}

```
